diff --git a/js/run_compliance_suite.bash b/js/run_compliance_suite.bash index a13d025..c7d5296 100755 --- a/js/run_compliance_suite.bash +++ b/js/run_compliance_suite.bash @@ -48,7 +48,12 @@ while read -r test_group; do fi set -e done <<<"$(find "$test_group" -maxdepth 1 -mindepth 1 -type f -name '*.json' | sort)" -done <<<"$(find "$DIR/test_cases" -maxdepth 1 -mindepth 1 -type d | sort)" +done <<<"$(find "$DIR/test_cases" -maxdepth 1 -mindepth 1 -type d ! -name '_*' | sort)" + +ignored_count=$(find "$DIR/test_cases" -maxdepth 1 -mindepth 1 -type d -name '_*' | wc -l) + +echo "" +echo "$ignored_count ignored tests" if [ $failed_count -ne 0 ]; then echo "$failed_count failed tests" diff --git a/js/test_cases/helpers_gte/input1.json b/js/test_cases/_helpers_gte/input1.json similarity index 100% rename from js/test_cases/helpers_gte/input1.json rename to js/test_cases/_helpers_gte/input1.json diff --git a/js/test_cases/helpers_gte/main.dust b/js/test_cases/_helpers_gte/main.dust similarity index 100% rename from js/test_cases/helpers_gte/main.dust rename to js/test_cases/_helpers_gte/main.dust diff --git a/js/test_cases/helpers_lt/input1.json b/js/test_cases/_helpers_lt/input1.json similarity index 100% rename from js/test_cases/helpers_lt/input1.json rename to js/test_cases/_helpers_lt/input1.json diff --git a/js/test_cases/helpers_lt/main.dust b/js/test_cases/_helpers_lt/main.dust similarity index 100% rename from js/test_cases/helpers_lt/main.dust rename to js/test_cases/_helpers_lt/main.dust diff --git a/js/test_cases/helpers_lte/input1.json b/js/test_cases/_helpers_lte/input1.json similarity index 100% rename from js/test_cases/helpers_lte/input1.json rename to js/test_cases/_helpers_lte/input1.json diff --git a/js/test_cases/helpers_lte/main.dust b/js/test_cases/_helpers_lte/main.dust similarity index 100% rename from js/test_cases/helpers_lte/main.dust rename to js/test_cases/_helpers_lte/main.dust