diff options
author | Jilles Tjoelker <jilles@FreeBSD.org> | 2020-06-28 21:33:08 +0000 |
---|---|---|
committer | Jilles Tjoelker <jilles@FreeBSD.org> | 2020-06-28 21:33:08 +0000 |
commit | 40276ff30e343cfc83b4c4c6293981f2427cbf8b (patch) | |
tree | 95d9221d30f8c0c9718668f2c33c50f7f05cae31 /bin/sh | |
parent | c1602cfd61840305f77b94c876f5fbb59aaec542 (diff) | |
download | src-40276ff30e343cfc83b4c4c6293981f2427cbf8b.tar.gz src-40276ff30e343cfc83b4c4c6293981f2427cbf8b.zip |
Notes
Diffstat (limited to 'bin/sh')
-rwxr-xr-x | bin/sh/tests/functional_test.sh | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/bin/sh/tests/functional_test.sh b/bin/sh/tests/functional_test.sh index 79adb6a4c74a..698053885adc 100755 --- a/bin/sh/tests/functional_test.sh +++ b/bin/sh/tests/functional_test.sh @@ -27,7 +27,6 @@ # $FreeBSD$ SRCDIR=$(atf_get_srcdir) -CATEGORY=$(basename ${SRCDIR}) check() { @@ -61,20 +60,7 @@ add_testcase() esac atf_test_case ${tc_escaped} - - if [ "$(atf_config_get ci false)" = "true" ]; then - case "${CATEGORY}/${tc}" in - execution/bg12.0) - eval "${tc_escaped}_body() { atf_skip 'https://bugs.freebsd.org/247559'; }" - ;; - *) - eval "${tc_escaped}_body() { check ${tc}; }" - ;; - esac - else - eval "${tc_escaped}_body() { check ${tc}; }" - fi - + eval "${tc_escaped}_body() { check ${tc}; }" atf_add_test_case ${tc_escaped} } |