diff options
author | Wang Sheng-Hui <shhuiw@gmail.com> | 2014-10-30 12:55:33 +0800 |
---|---|---|
committer | Ben Pfaff <blp@nicira.com> | 2014-10-30 10:24:05 -0700 |
commit | 03ec3f12967349d5f744f18c71f2a81487da6117 (patch) | |
tree | 2f85c4ecbe060d6d3aafba5c6059063a68698b9e | |
parent | 3f636c7e22945652e0e2553894598fa24a5d5f6f (diff) | |
download | openvswitch-03ec3f12967349d5f744f18c71f2a81487da6117.tar.gz |
tests: Check the existance of WHY-OVS.md instead of WHY-OVS.
WHY-OVS has been renamed to WHY-OVS.md. Update the filenames in run-oftest
and run-ryu scripts
Signed-off-by: Wang Sheng-Hui <shhuiw@gmail.com>
Signed-off-by: Ben Pfaff <blp@nicira.com>
-rwxr-xr-x | tests/run-oftest | 2 | ||||
-rwxr-xr-x | tests/run-ryu | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/run-oftest b/tests/run-oftest index c73c25c90..32cc6d21e 100755 --- a/tests/run-oftest +++ b/tests/run-oftest @@ -21,7 +21,7 @@ case $srcdir in /*) ;; *) srcdir=`pwd`/$srcdir ;; esac -if test ! -e "$srcdir"/WHY-OVS; then +if test ! -e "$srcdir"/WHY-OVS.md; then echo >&2 'source directory not found, please set $srcdir or run via \"make check-oftest' exit 1 fi diff --git a/tests/run-ryu b/tests/run-ryu index f63123ee6..3a1fb50fa 100755 --- a/tests/run-ryu +++ b/tests/run-ryu @@ -19,7 +19,7 @@ case $srcdir in /*) ;; *) srcdir=`pwd`/$srcdir ;; esac -if test ! -e "$srcdir"/WHY-OVS; then +if test ! -e "$srcdir"/WHY-OVS.md; then echo >&2 'source directory not found, please set $srcdir or run via \"make check-ryu' exit 1 fi |