[PATCH] D132351: Fix AArch64 SVE bots

Diana Picus via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 22 00:57:59 PDT 2022


rovka created this revision.
rovka added reviewers: DavidSpickett, gkistanova, ostannard.
rovka added a project: Zorg.
Herald added subscribers: ctetreau, kristof.beyls, tschuett.
Herald added a project: All.
rovka requested review of this revision.

The SVE bots are running the llvm-test-suite with flang, but they're not
setting NO_STOP_MESSAGE in the environment. This causes most of the
tests to fail, as expected (see
https://flang.llvm.org/docs/FortranLLVMTestSuite.html#:~:text=to%20set%20the-,NO_STOP_MESSAGE,-environment%20variable%20to)

This patch makes sure to set NO_STOP_MESSAGE to 1 for all the SVE bots.
As far as I can tell, no other bots run the test-suite with flang.


Repository:
  rZORG LLVM Github Zorg

https://reviews.llvm.org/D132351

Files:
  buildbot/osuosl/master/config/builders.py


Index: buildbot/osuosl/master/config/builders.py
===================================================================
--- buildbot/osuosl/master/config/builders.py
+++ buildbot/osuosl/master/config/builders.py
@@ -495,6 +495,9 @@
                     clean=False,
                     checkout_flang=True,
                     runTestSuite=True,
+                    env={
+                        'NO_STOP_MESSAGE':'1', # For Fortran test-suite
+                    },
                     testsuite_flags=[
                         '--cppflags', '-mcpu=a64fx -mllvm -scalable-vectorization=preferred -mllvm -treat-scalable-fixed-error-as-warning=false -O3',
                         '--threads=48', '--build-threads=48'],
@@ -515,6 +518,9 @@
                     useTwoStage=True,
                     testStage1=False,
                     runTestSuite=True,
+                    env={
+                        'NO_STOP_MESSAGE':'1', # For Fortran test-suite
+                    },
                     testsuite_flags=[
                         '--cppflags', '-mcpu=a64fx -mllvm -scalable-vectorization=preferred -mllvm -treat-scalable-fixed-error-as-warning=false -O3',
                         '--threads=48', '--build-threads=48'],
@@ -533,6 +539,9 @@
                     clean=False,
                     checkout_flang=True,
                     runTestSuite=True,
+                    env={
+                        'NO_STOP_MESSAGE':'1', # For Fortran test-suite
+                    },
                     testsuite_flags=[
                         '--cppflags', '-mcpu=a64fx -msve-vector-bits=512 -mllvm -treat-scalable-fixed-error-as-warning=false -O3',
                         '--threads=48', '--build-threads=48'],
@@ -553,6 +562,9 @@
                     useTwoStage=True,
                     testStage1=False,
                     runTestSuite=True,
+                    env={
+                        'NO_STOP_MESSAGE':'1', # For Fortran test-suite
+                    },
                     testsuite_flags=[
                         '--cppflags', '-mcpu=a64fx -msve-vector-bits=512 -mllvm -treat-scalable-fixed-error-as-warning=false -O3',
                         '--threads=48', '--build-threads=48'],


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D132351.454399.patch
Type: text/x-patch
Size: 2231 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220822/78b2eed3/attachment.bin>


More information about the llvm-commits mailing list