Files
Rahul Manocha 4ecda67e71 [SWDEV-438556][SWDEV-451686] - Enable Negative Param hip tests
Change-Id: I7c602ca0109864aac9d18feb31ae90f2a0ef4d36


[ROCm/hip-tests commit: 839b3b21d1]
2024-04-22 13:00:22 -04:00

112 خطوط
3.8 KiB
Python

# Copyright (c) 2022 Advanced Micro Devices, Inc. All Rights Reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
import subprocess
import sys
import unittest
import os
class CompileAndCapture(unittest.TestCase):
path = None
expected_error_count = 0
expected_warning_count = 0
hip_path = None
file = None
error_string = None
warning_string = None
platform = None
def setUp(self):
self.error_string = 'error:'
self.warning_string = 'warning:'
self.assertFalse(self.hip_path == None)
self.assertFalse(self.path == None)
self.assertFalse(self.file == None)
self.assertTrue(self.platform == 'amd' or self.platform == 'nvidia')
def test(self):
if os.name == 'nt':
hipcc = self.hip_path + '/bin/hipcc.bat'
else:
hipcc = self.hip_path + '/bin/hipcc'
compiler_args = [
hipcc,
'-I' + self.path + '/../../../include',
'-c',
self.path + '/' + self.file,
]
# 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=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')
print(compiler_stderr)
error_count = compiler_stderr.count(self.error_string)
if self.expected_error_count < 0:
self.assertGreater(error_count, 0)
else:
self.assertEqual(error_count, self.expected_error_count)
warning_count = compiler_stderr.count(self.warning_string)
if self.expected_warning_count < 0:
self.assertGreater(warning_count, 0)
else:
self.assertEqual(warning_count, self.expected_warning_count)
if __name__ == '__main__':
try:
CompileAndCapture.path = sys.argv[1]
except IndexError:
CompileAndCapture.path = None
try:
CompileAndCapture.platform = sys.argv[2]
except IndexError:
CompileAndCapture.platform = None
try:
CompileAndCapture.hip_path = sys.argv[3]
except IndexError:
CompileAndCapture.hip_path = None
try:
CompileAndCapture.file = sys.argv[4]
except IndexError:
CompileAndCapture.file = None
try:
CompileAndCapture.expected_error_count = int(sys.argv[5])
except IndexError:
CompileAndCapture.expected_error_count = 0
try:
CompileAndCapture.expected_warning_count = int(sys.argv[6])
except IndexError:
CompileAndCapture.expected_warning_count = 0
# Unittest looks at the same argv's as the __main__ and doesn't know how
# to handle arguments other than the executable (0). Therefore passing only
# executable as the argv for unittest module.
unittest.main(argv=[sys.argv[0]])