Commit:    885a7da0e6b50f2b64dbf9145d11821580e8c61f
Author:    Christoph M. Becker <cmbecke...@gmx.de>         Tue, 11 Jun 2019 
10:45:46 +0200
Parents:   f8b48fb1f6dc96e68f25dd42bc0ca3b54b568577
Branches:  master

Link:       
http://git.php.net/?p=pftt2.git;a=commitdiff;h=885a7da0e6b50f2b64dbf9145d11821580e8c61f

Log:
Exercise and check SKIPIF sections of PHPT test cases

Commit ca34269[1] inadvertently disabled exercising of SKIPIF sections.

[1] 
<http://git.php.net/?p=pftt2.git;a=commit;h=ca34269debeee8b3c192cfa3dd56a35b54be6d1b>

Changed paths:
  M  src/com/mostc/pftt/runner/PhptTestPreparer.java


Diff:
diff --git a/src/com/mostc/pftt/runner/PhptTestPreparer.java 
b/src/com/mostc/pftt/runner/PhptTestPreparer.java
index 73440f5..75762ca 100644
--- a/src/com/mostc/pftt/runner/PhptTestPreparer.java
+++ b/src/com/mostc/pftt/runner/PhptTestPreparer.java
@@ -30,7 +30,7 @@ public class PhptTestPreparer {
                prep.base_file_name = 
FileSystemScenario.basename(test_case.getBaseName()).replace("+", "");
                
                //
-               if (false /* TODO !AzureWebsitesScenario.check(fs) */) {
+               if (true /* TODO !AzureWebsitesScenario.check(fs) */) {
                        if (test_case.containsSection(EPhptSection.SKIPIF)) {
                                prep.skipif_file = 
host.joinIntoOnePath(prep.test_dir, prep.base_file_name + ".skip.php");

Reply via email to