diff options
Diffstat (limited to 'tests/scripts/features/output-sync')
-rw-r--r-- | tests/scripts/features/output-sync | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/scripts/features/output-sync b/tests/scripts/features/output-sync index 3bb9997..e2e88a7 100644 --- a/tests/scripts/features/output-sync +++ b/tests/scripts/features/output-sync @@ -4,9 +4,12 @@ $description = "Test --output-sync (-O) option."; $details = "Test the synchronization of output from parallel jobs."; -if (!$parallel_jobs) { - return -1; -} +# If we don't have output sync support, never mind. +exists $FEATURES{'output-sync'} or return -1; + +# Output sync can't be tested without parallelization +$parallel_jobs or return -1; + if ($vos) { $sleep_command = "sleep -seconds"; |