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.
This commit is contained in:
David Herrmann 2014-07-18 12:58:00 +02:00
parent 5ab887e98d
commit 037ee337f0

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;
}