diff options
author | Tony Cook <tony@develop-help.com> | 2016-01-27 08:54:15 +1100 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2016-01-27 08:54:15 +1100 |
commit | 6368ab83389bbb63c0dfff79297f52b92053226e (patch) | |
tree | cb5baacbf5b5835a613a028af6fc23539d7b36a5 /ext | |
parent | cdfe2e65ec1960d301d083bee421388e064cd234 (diff) | |
download | perl-6368ab83389bbb63c0dfff79297f52b92053226e.tar.gz |
Revert "[perl #126632] more diagnostics"
This reverts commit ef18391745841fb1df298cec3a3001be4237fb3d.
This commit was intended only to diagnose Jenkins build issues, I now
have better access to Jenkins (and the new diagnostics didn't tell me
much anyway.)
Diffstat (limited to 'ext')
-rw-r--r-- | ext/XS-APItest/t/win32.t | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/ext/XS-APItest/t/win32.t b/ext/XS-APItest/t/win32.t index 3e6a99eda3..fdd794a043 100644 --- a/ext/XS-APItest/t/win32.t +++ b/ext/XS-APItest/t/win32.t @@ -40,14 +40,8 @@ SKIP: #this is testing the current state of things, specifically manifest stuff #this test can be changed if perls relationship to comctl32.dll changes my @ccver = Comctl32Version(); - unless (cmp_ok($ccver[0], '>=', 6, "comctl32.dll is atleast version 6")) { - diag "comctl32 version is (@ccver)"; - my $resout = "resource$$.txt"; - if (system("mt -inputresource:$^X -out:$resout") == 0) { - system "type $resout >&2"; - unlink $resout; - } - } + cmp_ok($ccver[0], '>=', 6, "comctl32.dll is atleast version 6") + or diag "comctl32 version is (@ccver)"; } } |