diff options
author | Daniel Kirchner <daniel@ekpyron.org> | 2018-03-12 21:13:19 +0800 |
---|---|---|
committer | Daniel Kirchner <daniel@ekpyron.org> | 2018-03-13 01:40:20 +0800 |
commit | 121f87b043d7c3f01c760589edf1bf342d67c634 (patch) | |
tree | 117c4f134316c289a928dbd1c00cb976c6fec0aa /scripts | |
parent | 30443f3a3e8131813dc6c62c2096c5d79f100a86 (diff) | |
download | dexon-solidity-121f87b043d7c3f01c760589edf1bf342d67c634.tar.gz dexon-solidity-121f87b043d7c3f01c760589edf1bf342d67c634.tar.zst dexon-solidity-121f87b043d7c3f01c760589edf1bf342d67c634.zip |
Move test tools to the subdirectory test/tools and adjust CMakeLists.txt.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/uniqueErrors.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/uniqueErrors.sh b/scripts/uniqueErrors.sh index eee1df90..fa2c7b4c 100755 --- a/scripts/uniqueErrors.sh +++ b/scripts/uniqueErrors.sh @@ -9,6 +9,6 @@ do echo -n $x " # " # This subshell is a workaround to prevent the shell from printing # "Aborted" - ("$REPO"/build/test/solfuzzer < "$x" || true) 2>&1 | head -n 1 + ("$REPO"/build/test/tools/solfuzzer < "$x" || true) 2>&1 | head -n 1 done ) | sort -u -t'#' -k 2 |