aboutsummaryrefslogtreecommitdiff
path: root/tools/tf_fuzz/regression/regress
diff options
context:
space:
mode:
Diffstat (limited to 'tools/tf_fuzz/regression/regress')
-rw-r--r--tools/tf_fuzz/regression/regress22
1 files changed, 0 insertions, 22 deletions
diff --git a/tools/tf_fuzz/regression/regress b/tools/tf_fuzz/regression/regress
deleted file mode 100644
index 1a2b59567c..0000000000
--- a/tools/tf_fuzz/regression/regress
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright (c) 2019-2020, Arm Limited. All rights reserved.
-#
-# SPDX-License-Identifier: BSD-3-Clause
-#
-echo
-echo TF-Fuzz Regression Testing
-echo
-for reg_test in `ls -F | grep \/$ | grep -v add_these_tests | grep -v regress_lib`; do
- echo
- echo Running "$reg_test"...
- cd $reg_test
- rm -f test.c stdout_stderr
- python3 check.py --q template exp_stdout_stderr stdout_stderr exp_test.c test.c
- if test $? -ne 0
- then
- exit
- fi
- cd ..
-done
-echo
-echo
-echo All TF-Fuzz regression tests passed.