summaryrefslogtreecommitdiffstats
path: root/tests/filesys/extended/grow-two-files.ck
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2012-03-27 11:51:08 +0200
committermanuel <manuel@mausz.at>2012-03-27 11:51:08 +0200
commit4f670845ff9ab6c48bcb5f7bf4d4ef6dc3c3064b (patch)
tree868c52e06f207b5ec8a3cc141f4b8b2bdfcc165c /tests/filesys/extended/grow-two-files.ck
parenteae0bd57f0a26314a94785061888d193d186944a (diff)
downloadprogos-4f670845ff9ab6c48bcb5f7bf4d4ef6dc3c3064b.tar.gz
progos-4f670845ff9ab6c48bcb5f7bf4d4ef6dc3c3064b.tar.bz2
progos-4f670845ff9ab6c48bcb5f7bf4d4ef6dc3c3064b.zip
reorganize file structure to match the upstream requirements
Diffstat (limited to 'tests/filesys/extended/grow-two-files.ck')
-rw-r--r--tests/filesys/extended/grow-two-files.ck23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/filesys/extended/grow-two-files.ck b/tests/filesys/extended/grow-two-files.ck
new file mode 100644
index 0000000..b5e754a
--- /dev/null
+++ b/tests/filesys/extended/grow-two-files.ck
@@ -0,0 +1,23 @@
1# -*- perl -*-
2use strict;
3use warnings;
4use tests::tests;
5use tests::random;
6check_expected (IGNORE_EXIT_CODES => 1, [<<'EOF']);
7(grow-two-files) begin
8(grow-two-files) create "a"
9(grow-two-files) create "b"
10(grow-two-files) open "a"
11(grow-two-files) open "b"
12(grow-two-files) write "a" and "b" alternately
13(grow-two-files) close "a"
14(grow-two-files) close "b"
15(grow-two-files) open "a" for verification
16(grow-two-files) verified contents of "a"
17(grow-two-files) close "a"
18(grow-two-files) open "b" for verification
19(grow-two-files) verified contents of "b"
20(grow-two-files) close "b"
21(grow-two-files) end
22EOF
23pass;