Re: [CMake] using ctest with cpu emulator
I do the following to run tests for all built archs on OS X: # -- macro(MXA_ADD_TEST testname Exename) if (NOT APPLE) ADD_TEST(${testname} ${Exename}) else() foreach(arch ${CMAKE_OSX_ARCHITECTURES})
[CMake] using ctest with cpu emulator
hi all, i am trying to run ctest with the qemu cpu emulator: so if i am compiling a test case myTest, it is usually simply called with `./myTest'. is it possible to wrap this into a program, so that it calls `qemu-ARCHITECTURE -cpu CPUTYPE ./myTest'? thanks, tim -- t...@klingt.org http://tim