EXSWHTEC-283 - Introduce build dependencies for numerical accuracy tests #233

Change-Id: I5381beb47347c24a161113b986fa7f252057ffdb
This commit is contained in:
Mirza Halilčević
2023-12-28 14:36:01 +01:00
committed by Rakesh Roy
parent 044a59496c
commit 122403f464
8 changed files with 60 additions and 3 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ class CompileAndCapture(unittest.TestCase):
# HIP compiler on AMD platforms has limit of 20 errors, and some negative
# test cases expect that more errors are detected.
if (self.platform == 'amd'):
compiler_args.append('-ferror-limit=100')
compiler_args.append('-ferror-limit=200')
compiler_output = subprocess.run(compiler_args, stderr=subprocess.PIPE)
# Get the compiler output in the stdout if -V flag is raised during ctest invocation.
compiler_stderr = compiler_output.stderr.decode('UTF-8')