Add check_effective_target_pytest3.
authorMartin Liska <mliska@suse.cz>
Mon, 17 Jan 2022 10:27:59 +0000 (11:27 +0100)
committerMartin Liska <mliska@suse.cz>
Mon, 17 Jan 2022 10:28:47 +0000 (11:28 +0100)
gcc/testsuite/ChangeLog:

* lib/gcov.exp: Use check_effective_target_pytest3.
* lib/target-supports.exp: Add check_effective_target_pytest3.

gcc/testsuite/lib/gcov.exp
gcc/testsuite/lib/target-supports.exp

index dfa1b36..6c57515 100644 (file)
@@ -17,6 +17,8 @@
 # Verify various kinds of gcov output: line counts, branch percentages,
 # and call return percentages.  None of this is language-specific.
 
+load_lib "target-supports.exp"
+
 global GCOV
 
 #
@@ -274,11 +276,8 @@ proc run-gcov-pytest { args } {
     set testcase [remote_download host $testcase]
     set result [remote_exec host $GCOV "$testcase -i"]
 
-    set pytest_cmd "python3 -m pytest --color=no -rap -s --tb=no"
-    set result [remote_exec host "$pytest_cmd --version"]
-    set status [lindex $result 0]
-    if { $status != 0 } then {
-      unsupported "$subdir/$testcase run-gcov-pytest python3 pytest missing"
+    if { ![check_effective_target_pytest3] } {
+      unsupported "$script pytest python3 is missing"
       return
     }
 
index 12c5ca5..fd48475 100644 (file)
@@ -11734,3 +11734,15 @@ proc check_effective_target_python3 { } {
         return 0;
     }
 }
+
+# Return 1 if pytest module is available for python3.
+
+proc check_effective_target_pytest3 { } {
+    set result [remote_exec host "python3 -m pytest --color=no -rap -s --tb=no --version"]
+    set status [lindex $result 0]
+    if { $status == 0 } then {
+        return 1;
+    } else {
+        return 0;
+    }
+}