From 4d3a057a0381431f4018562ee053163060839c9a Mon Sep 17 00:00:00 2001 From: Sidharth Kshatriya Date: Tue, 14 Dec 2021 16:36:28 +0530 Subject: [PATCH] Bug: The `enabled` test checks, though they exist are never actually run Fix by copying the `enabled` check file, if it exists to where the tests are being run --- test/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/run b/test/run index 492fd6f6..751cca40 100755 --- a/test/run +++ b/test/run @@ -33,7 +33,7 @@ main() { for dir in $(find "${@:-.}" -type d | sort); do cd $root/$dir; mkdir -p $work/$dir - for file in in cmd rc; do + for file in in cmd rc enabled; do [ -f $file ] && cp $file $work/$dir/ done cd $work/$dir;