diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2018-09-20 19:33:34 +0300 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2018-09-20 19:33:34 +0300 |
commit | e88822fa19408316f3e15d173843169baa938aa7 (patch) | |
tree | 86722c5ae8ecfc78cf94ee1a746e4131fe12742a /res | |
parent | 90a3a45ce58fbc7c1303c746ba174128db732004 (diff) | |
download | ck-e88822fa19408316f3e15d173843169baa938aa7.tar.gz ck-e88822fa19408316f3e15d173843169baa938aa7.tar.bz2 ck-e88822fa19408316f3e15d173843169baa938aa7.zip |
Fix test suite problem with symlink dirs
Diffstat (limited to 'res')
-rwxr-xr-x | res/check_ck | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/res/check_ck b/res/check_ck index ce35396..f8b3a1a 100755 --- a/res/check_ck +++ b/res/check_ck @@ -1,7 +1,7 @@ #!/bin/bash -BIN=@CMAKE_BINARY_DIR@ -TEST_LOCATION=@PROJECT_TESTING_GROUNDS@ +BIN=$(realpath @CMAKE_BINARY_DIR@) # solve symlink problems +TEST_LOCATION=$(realpath @PROJECT_TESTING_GROUNDS@) # used in regression tests function running { |