From 52f2fc5b957a1a65a17cdb6c9829065e6acff96d Mon Sep 17 00:00:00 2001 From: Aditya Avinash Atluri Date: Fri, 26 Feb 2016 19:39:14 -0600 Subject: [PATCH] Update README.md [ROCm/hip commit: 875403fec889b0ea9601b774d258c870ad6d6ccd] --- projects/hip/tests/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/projects/hip/tests/README.md b/projects/hip/tests/README.md index bc8a9772f3..96de22b558 100644 --- a/projects/hip/tests/README.md +++ b/projects/hip/tests/README.md @@ -10,24 +10,24 @@ $ make test ``` #----- -## How to add a new test +### How to add a new test -# edit src/CMakeFiles to add the test: +edit src/CMakeFiles to add the test: -# add the executable and list of required CPP files, ie: +### 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: +### Add to automated Test framework: ``` make_test (TESTNAME ARGS) make_test(hipMemset " ") ``` -# Running tests: +### Running tests: ``` make test ```