journal: reduce test-journal-send timeout from 10s to 1s

The sleep(10) in test-journal-send is quite aggressive. We need it only
for the journal to get our cgroup information. But even that information
is not vital to the test, so a sleep(1) should be just fine.

(cherry picked from commit 037ee337f0)
(cherry picked from commit 918af53be9)
This commit is contained in:
David Herrmann
2014-07-19 17:24:15 -04:00
committed by Zbigniew Jędrzejewski-Szmek
parent 7f70164f5c
commit 6fd930fae5
+1 -1
View File
@@ -72,7 +72,7 @@ int main(int argc, char *argv[]) {
"N_CPUS=%li", sysconf(_SC_NPROCESSORS_ONLN),
NULL);
sleep(10);
sleep(1);
return 0;
}