Skip to content

Commit ebf1670

Browse files
committed
Be verbose when running the linker tests.
They seem to be taking a long time, so show logs to keep producing logs.
1 parent f4ca8bc commit ebf1670

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

run.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ echo "Scala.js branch: $SCALAJS_BRANCH"
1313

1414
case $SCALAJS_BRANCH in
1515
main)
16-
TESTS="helloworld$SUFFIX/run testSuite$SUFFIX/test testSuiteJVM$SUFFIX/test ir$SUFFIX/test irJS$SUFFIX/test linker$SUFFIX/test linkerJS$SUFFIX/test:compile linkerJS$SUFFIX/test:fastLinkJS linkerJS$SUFFIX/test"
16+
TESTS="helloworld$SUFFIX/run testSuite$SUFFIX/test testSuiteJVM$SUFFIX/test ir$SUFFIX/test irJS$SUFFIX/test linker$SUFFIX/testOnly~--~-v linkerJS$SUFFIX/test:compile linkerJS$SUFFIX/test:fastLinkJS linkerJS$SUFFIX/testOnly~--~-v"
1717
;;
1818
*)
1919
echo "Unknown Scala.js branch $SCALAJS_BRANCH"
@@ -28,7 +28,8 @@ cd scala-js
2828
git checkout $SCALAJS_BRANCH
2929
npm install
3030

31-
for TEST in $TESTS; do
32-
echo "RUNNING test $TEST..."
33-
sbt -J-Xmx5G 'set resolvers in Global += "scala-integration" at "https://scala-ci.typesafe.com/artifactory/scala-integration/"' ++$SCALA_VERSION $TEST
31+
for TESTRAW in $TESTS; do
32+
TEST=$(echo $TESTRAW | tr '~' ' ')
33+
echo "RUNNING test '$TEST'..."
34+
sbt -J-Xmx5G 'set resolvers in Global += "scala-integration" at "https://scala-ci.typesafe.com/artifactory/scala-integration/"' ++$SCALA_VERSION "$TEST"
3435
done

0 commit comments

Comments
 (0)