.
authorJim Meyering <jim@meyering.net>
Sun, 31 Aug 1997 22:15:57 +0000 (22:15 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 31 Aug 1997 22:15:57 +0000 (22:15 +0000)
tests/rm/sunos-1 [new file with mode: 0755]

diff --git a/tests/rm/sunos-1 b/tests/rm/sunos-1
new file mode 100755 (executable)
index 0000000..98d8b79
--- /dev/null
@@ -0,0 +1,27 @@
+#!/bin/sh
+
+: ${RM=rm}
+test=sunos-1
+
+if test "$VERBOSE" = yes; then
+  set -x
+  $RM --version
+fi
+
+tmp=t-rm.$$
+
+test_failure=0
+mkdir $tmp || test_failure=1
+
+if test $test_failure = 1; then
+  echo 'failure in testing framework'
+  exit 1
+fi
+
+fail=0
+cd $tmp
+$RM '' && fail=1
+cd ..
+rm -rf $tmp
+
+exit $fail