Skip to content

Commit

Permalink
comment out tests that cause premature process abort on win32.
Browse files Browse the repository at this point in the history
  • Loading branch information
Whiteknight committed Jan 4, 2011
1 parent aeacfec commit 5d54e34
Showing 1 changed file with 26 additions and 24 deletions.
50 changes: 26 additions & 24 deletions t/dynoplibs/io.t
Expand Up @@ -592,30 +592,32 @@ throws_substring(<<"CODE", description, "bad stat_i_s_i")
$I0 = stat $S0, $I1
.end
CODE
throws_substring(<<"CODE", description, "bad stat_i_i_i")
.sub main
$I1 = .STAT_FILESIZE
$I2 = 1000
$I0 = stat $I2, $I1
.end
CODE
throws_substring(<<"CODE", description, "bad stat_i_ic_i")
.sub main
$I1 = .STAT_FILESIZE
$I0 = stat 1000, $I1
.end
CODE
throws_substring(<<"CODE", description, "bad stat_i_i_ic")
.sub main
$I2 = 1000
$I0 = stat $I2, .STAT_FILESIZE
.end
CODE
throws_substring(<<"CODE", description, "bad stat_i_ic_ic")
.sub main
$I0 = stat 1000, .STAT_FILESIZE
.end
CODE

# These tests cause the test to abort prematurely. See TT #1933 for details
#throws_substring(<<"CODE", description, "bad stat_i_i_i")
# .sub main
# $I1 = .STAT_FILESIZE
# $I2 = 1000
# $I0 = stat $I2, $I1
# .end
#CODE
#throws_substring(<<"CODE", description, "bad stat_i_ic_i")
# .sub main
# $I1 = .STAT_FILESIZE
# $I0 = stat 1000, $I1
# .end
#CODE
#throws_substring(<<"CODE", description, "bad stat_i_i_ic")
# .sub main
# $I2 = 1000
# $I0 = stat $I2, .STAT_FILESIZE
# .end
#CODE
#throws_substring(<<"CODE", description, "bad stat_i_ic_ic")
# .sub main
# $I0 = stat 1000, .STAT_FILESIZE
# .end
#CODE
.end

.sub stdout_tests
Expand Down

0 comments on commit 5d54e34

Please sign in to comment.