From 639a8847e713a111d72dc6e36bc9805a178d2bf0 Mon Sep 17 00:00:00 2001 From: kevinnls Date: Sun, 21 Aug 2022 18:39:39 +0530 Subject: [PATCH] patch (tests): update output path for tests variables. who knew they would be so handy? --- test/.gitignore | 4 ++-- test/default.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/.gitignore b/test/.gitignore index 23be433..0f1dc1c 100644 --- a/test/.gitignore +++ b/test/.gitignore @@ -1,2 +1,2 @@ -test-output -stdouterr +/output +/stdouterr diff --git a/test/default.sh b/test/default.sh index 4fd3b84..f665fd4 100755 --- a/test/default.sh +++ b/test/default.sh @@ -19,8 +19,8 @@ curr_hash=$(get_last_commit) script_dir="$(realpath -e $(dirname "${0}") 2>/dev/null)" project_root=${script_dir%/*} # remove everything after the final `/` -test_dir="${project_root}/dev/tests.d" -out_dir="${project_root}/dev/test-output" +test_dir="${project_root}/test" +out_dir="${test_dir}/output" [[ ! -d "${out_dir}" ]] && mkdir -p "${out_dir}" src_dir="${project_root}/src"