We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cce87f4 commit 66bac75Copy full SHA for 66bac75
1 file changed
tests/run_tests.sh
@@ -38,6 +38,7 @@ for dir in unit sdk auto integration performance; do
38
chmod 0666 "$stdout" "$stderr"
39
export OTEL_SHELL_SDK_STDERR_REDIRECT="$stderr"
40
( timeout $((60 * 60 * 3)) $TEST_SHELL $options "$file" 1> "$stdout" 2> "$stderr" && echo "$file SUCCEEDED" || (echo "$file FAILED" && echo "stdout:" && cat "$stdout" && echo "stderr:" && cat "$stderr" && echo "otlp:" && cat "$OTEL_EXPORT_LOCATION" && touch "$failed_flag" && exit 1) ) 2>&1 | perl -e '$| = 1; print while <>;' &
41
+ wait # TODO force sequential for now
42
[ "$dir" != performance ] || wait
43
done < <({ find $dir -iname 'test_*.sh'; find $dir -iname 'test_*.'"$SHELL"; } | sort -u)
44
wait
0 commit comments