aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTharre <tharre3@gmail.com>2015-02-07 19:34:23 +0100
committerTharre <tharre3@gmail.com>2015-02-07 19:34:23 +0100
commit6990e949396c6023bffc4d7dd2f7320fd2aa91be (patch)
treea6053e4c13e72ed29f6441e7626b5d751d79102a
parent4a25bf1120e60c8a5d1746671972cf08faaaf620 (diff)
downloadredo-6990e949396c6023bffc4d7dd2f7320fd2aa91be.tar.gz
redo-6990e949396c6023bffc4d7dd2f7320fd2aa91be.tar.xz
redo-6990e949396c6023bffc4d7dd2f7320fd2aa91be.zip
Revert "Add sync to some test cases to make travis-ci work"
This reverts commit 4a25bf1120e60c8a5d1746671972cf08faaaf620.
-rw-r--r--test/always.bats1
-rw-r--r--test/fail.bats1
-rw-r--r--test/no-output.bats1
3 files changed, 0 insertions, 3 deletions
diff --git a/test/always.bats b/test/always.bats
index 6698a2d..a4ab1a2 100644
--- a/test/always.bats
+++ b/test/always.bats
@@ -4,6 +4,5 @@ load test_helper
@test "check if do-files marked with always really do execute always" {
run redo always
- sync
[ $status -eq 0 ] && [ -e always_result ]
}
diff --git a/test/fail.bats b/test/fail.bats
index 7ccbd07..1a77ced 100644
--- a/test/fail.bats
+++ b/test/fail.bats
@@ -9,6 +9,5 @@ load test_helper
@test "invoke with failing do-file" {
run redo fail
- sync
[ $status -ne 0 ] && [ ! -e fail_result ]
}
diff --git a/test/no-output.bats b/test/no-output.bats
index fee155d..c492e4f 100644
--- a/test/no-output.bats
+++ b/test/no-output.bats
@@ -4,6 +4,5 @@ load test_helper
@test "produce empty result" {
run redo no-output_result
- sync
[ $status -eq 0 ] && [ ! -e no-output_result ]
}