diff options
| author | Shreyas Siravara <sshreyas@fb.com> | 2016-12-08 14:00:57 -0800 |
|---|---|---|
| committer | Shreyas Siravara <sshreyas@fb.com> | 2016-12-08 19:56:47 -0800 |
| commit | 46254326030296c121c8d3d01dc511f792ea8d1d (patch) | |
| tree | 5b6f4145aefee110852bd8bd1d8218c734c7c71a | |
| parent | 9ca52cbf3ff540a3be6f7b5345e4af0f528c9c52 (diff) | |
run-tests.sh: Disable NetBSD regression tests for FB
Summary:
- Disable testing on NetBSD for FB
Signed-off-by: Shreyas Siravara <sshreyas@fb.com>
Change-Id: I3d7d3f9c8f002dcc029c49c1855dfad2eb494d00
Reviewed-on: http://review.gluster.org/16082
Tested-by: Shreyas Siravara <sshreyas@fb.com>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
Smoke: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Shreyas Siravara <sshreyas@fb.com>
Reviewed-by: David Hasson <dph@fb.com>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
| -rwxr-xr-x | run-tests.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/run-tests.sh b/run-tests.sh index 1487f30d832..866ab0464b4 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -182,12 +182,14 @@ function get_test_status () # for later. Why does the key have the distro and version then? # Because changing the key in all test files would be very big process # updating just this function with a better logic much simpler. + # + # FB Edit: For FB tests we are disabling NetBSD testing. + # Linux) result=$(grep -e "^#G_TESTDEF_TEST_STATUS_CENTOS6" $test_name | \ awk -F"," {'print $1'} | awk -F"=" {'print $2'}) ;; NetBSD) - result=$(grep -e "^#G_TESTDEF_TEST_STATUS_NETBSD7" $test_name | \ - awk -F"," {'print $1'} | awk -F"=" {'print $2'}) ;; + result="KNOWN_ISSUE" ;; *) result="ENABLED" ;; esac |
