summaryrefslogtreecommitdiff
path: root/tests/test-corruption.sh
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2013-07-09 10:41:07 -0400
committerColin Walters <walters@verbum.org>2013-07-09 10:41:07 -0400
commit43d69ac8a38c3c5684134685586805224716d1bf (patch)
treea135b1a54b774281d03cdf21aa5e97bbeda6e44d /tests/test-corruption.sh
parentbea4a7538fe453f17f99800a32b14f93f4407782 (diff)
downloadostree-43d69ac8a38c3c5684134685586805224716d1bf.tar.gz
tests: Drop numeric prefix
Theoretically it's useful to have layers of tests, but in practice it's just annoying to assign numbers.
Diffstat (limited to 'tests/test-corruption.sh')
-rwxr-xr-xtests/test-corruption.sh34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/test-corruption.sh b/tests/test-corruption.sh
new file mode 100755
index 00000000..258e0bdc
--- /dev/null
+++ b/tests/test-corruption.sh
@@ -0,0 +1,34 @@
+#!/bin/bash
+#
+# Copyright (C) 2011 Colin Walters <walters@verbum.org>
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+
+set -e
+
+echo "1..1"
+
+. $(dirname $0)/libtest.sh
+
+setup_test_repository "bare"
+$OSTREE checkout test2 checkout-test2
+cd checkout-test2
+chmod o+x firstfile
+$OSTREE fsck -q 2>/dev/null && (echo 1>&2 "fsck unexpectedly succeeded"; exit 1)
+chmod o-x firstfile
+$OSTREE fsck -q
+
+echo "ok chmod"