Dosyalar
rocm-systems/projects/clr/hipamd/tests
Aditya Avinash Atluri 087db9341e Testing all test cases
The comments for not-working tests are removed. They are working fine, thanks to this commit https://github.com/AMDComputeLibraries/HIP-privatestaging/commit/a8af2285a1ae1f774a65ac08d75c4fbb12955569

[ROCm/clr commit: dfd72b5ed7]
2016-02-29 13:01:43 -06:00
..
2016-02-29 13:01:43 -06:00
2016-02-26 19:39:14 -06:00

Tests uses CMAKE as teh build infrastructure.

Use :

$ mkdir build
$ cd build
$ cmake ../src
$ make
$ make test

#-----

How to add a new test

edit src/CMakeFiles to add the test:

add the executable and list of required CPP files, ie:

make_test (EXE CPP_FILES)
make_hip_executable (hipMemset hipMemset.cpp)

Add to automated Test framework:

make_test (TESTNAME ARGS)
make_test(hipMemset " ")

Running tests:

make test

Run a specific test:

./hipMemset