Skip to content
Andi S edited this page Aug 21, 2014 · 4 revisions

TEST FRAMEWORK:

To enable the tests accordingly download and install the google test framework (https://code.google.com/p/googletest/downloads/list) as follows:

> wget http://googletest.googlecode.com/files/gtest-1.7.0.zip
> unzip gtest-1.7.0.zip
> mv gtest-1.7.0 gtest
> cd gtest
> mkdir build
> cd build
> cmake ..
> make 

Note to keep the following directory structure, e.g.:

work
 | - gpuNUFFT
 | - gtest

In order to activate the test cases run the cmake command for the gpuNUFFT with the -DGEN_TESTS=ON option

Clone this wiki locally