From 94bc38df829c4816e629c7dcaed31b1e7c75bc4b Mon Sep 17 00:00:00 2001 From: gramanas Date: Mon, 16 Apr 2018 14:34:30 +0300 Subject: Add asan option to cmake finish init without any asan warnings --- src/tests/check_ck | 8 -------- src/tests/init | 23 ----------------------- 2 files changed, 31 deletions(-) delete mode 100755 src/tests/check_ck delete mode 100755 src/tests/init (limited to 'src/tests') diff --git a/src/tests/check_ck b/src/tests/check_ck deleted file mode 100755 index 3fd2369..0000000 --- a/src/tests/check_ck +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash - -DIR=@BIN_TEST_DIR@ -for i in $( ls $DIR ); do - ERROR="TEST "$i" FAILED:" - PASS="TEST "$i" PASSED" - source $DIR/$i -done diff --git a/src/tests/init b/src/tests/init deleted file mode 100755 index 4f78802..0000000 --- a/src/tests/init +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash -BIN=/build/ck - -TEST_LOCATION=@PROJECT_TESTING_GROUNDS@ -mkdir -p $TEST_LOCATION/vc -mkdir $TEST_LOCATION/sec - -exec $BIN/ck init $TEST_LOCATION/vc $TEST_LOCATION/sec & -wait $! - -if [ ! -f ~/.ck/ckrc ]; then - echo -e $ERROR"Config file not created." - exit 1 -fi - -if [ ! -f ~/.ck/ckdb ]; then - echo -e $ERROR"DB file not created." - exit 1 -fi - -rm -rf $HOME/.ck -rm -rf $TEST_LOCATION -echo -e $PASS -- cgit v1.2.3