aboutsummaryrefslogtreecommitdiff
path: root/testsuite/normalize-tests.sh
diff options
context:
space:
mode:
authorRob Savoye <rob.savoye@linaro.org>2013-09-20 16:04:15 -0600
committerRob Savoye <rob.savoye@linaro.org>2013-09-20 16:04:15 -0600
commit3f31f74fa479a302558c491b968f5a38287e837f (patch)
tree083579398e38f19fbac52dd6d7a4b383928cfc88 /testsuite/normalize-tests.sh
parent73ed4c15d655bf7ec7ebc66867ad6bc49c0e78be (diff)
move tests to their own files
Diffstat (limited to 'testsuite/normalize-tests.sh')
-rw-r--r--testsuite/normalize-tests.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/normalize-tests.sh b/testsuite/normalize-tests.sh
index 939d0b0a..3bfcae84 100644
--- a/testsuite/normalize-tests.sh
+++ b/testsuite/normalize-tests.sh
@@ -2,6 +2,15 @@
echo "============= normalize_path() tests ================"
+in="gdb-7.6~20121001+git3e2e76a.tar.bz2"
+out="`normalize_path ${in}`"
+if test ${out} = "binutils.git"; then
+ pass "normalize_path: tarball old git format"
+else
+ fail "normalize_path: tarball old git format"
+ fixme "${in} returned ${out}"
+fi
+
in="git://git.linaro.org/toolchain/binutils.git"
out="`normalize_path ${in}`"
if test ${out} = "binutils.git"; then