Fixing regex

This commit is contained in:
andrew clark
2025-10-22 08:39:24 -06:00
parent bae788d3d1
commit 45014bdc3c

2
qetest/Jenkinsfile vendored
View File

@@ -5,7 +5,7 @@ def rocmnode(name) {
// Given a pattern, check if the log contains the pattern.
def checkForPattern(pattern, log) {
// Regex check for a match in the log.
if (log ==~ pattern) {
if (log =~ pattern) {
echo "Found match in log for ${pattern}"
return true;
} else {