Skip to content

Commit d5f9250

Browse files
committed
Tag failing specs
1 parent 5924ca0 commit d5f9250

File tree

9 files changed

+33
-0
lines changed

9 files changed

+33
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
slow:The -0 command line option sets $/ and $-0
2+
fails:The -0 command line option sets $/ and $-0

spec/tags/core/file/printf_tags.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ fails:File#printf flags # applies to format o does nothing for negative argument
55
fails:File#printf flags # applies to formats bBxX does nothing for zero argument
66
fails:File#printf other formats c displays only the first character if argument is a string of several characters
77
fails:File#printf other formats c displays no characters if argument is an empty string
8+
fails:File#printf integer formats d converts to the empty string if precision is 0 and value is 0
9+
fails:File#printf integer formats i converts to the empty string if precision is 0 and value is 0
10+
fails:File#printf integer formats u converts to the empty string if precision is 0 and value is 0

spec/tags/core/kernel/printf_tags.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,9 @@ fails:Kernel.printf formatting io is specified other formats c displays only the
88
fails:Kernel.printf formatting io is specified other formats c displays no characters if argument is an empty string
99
fails:Kernel.printf formatting io is not specified other formats c displays only the first character if argument is a string of several characters
1010
fails:Kernel.printf formatting io is not specified other formats c displays no characters if argument is an empty string
11+
fails:Kernel.printf formatting io is specified integer formats d converts to the empty string if precision is 0 and value is 0
12+
fails:Kernel.printf formatting io is specified integer formats i converts to the empty string if precision is 0 and value is 0
13+
fails:Kernel.printf formatting io is specified integer formats u converts to the empty string if precision is 0 and value is 0
14+
fails:Kernel.printf formatting io is not specified integer formats d converts to the empty string if precision is 0 and value is 0
15+
fails:Kernel.printf formatting io is not specified integer formats i converts to the empty string if precision is 0 and value is 0
16+
fails:Kernel.printf formatting io is not specified integer formats u converts to the empty string if precision is 0 and value is 0

spec/tags/core/kernel/sprintf_tags.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,9 @@ fails:Kernel#sprintf other formats c displays only the first character if argume
1212
fails:Kernel#sprintf other formats c displays no characters if argument is an empty string
1313
fails:Kernel.sprintf other formats c displays only the first character if argument is a string of several characters
1414
fails:Kernel.sprintf other formats c displays no characters if argument is an empty string
15+
fails:Kernel#sprintf integer formats d converts to the empty string if precision is 0 and value is 0
16+
fails:Kernel#sprintf integer formats i converts to the empty string if precision is 0 and value is 0
17+
fails:Kernel#sprintf integer formats u converts to the empty string if precision is 0 and value is 0
18+
fails:Kernel.sprintf integer formats d converts to the empty string if precision is 0 and value is 0
19+
fails:Kernel.sprintf integer formats i converts to the empty string if precision is 0 and value is 0
20+
fails:Kernel.sprintf integer formats u converts to the empty string if precision is 0 and value is 0
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fails:Set#compare_by_identity is not equal to set what does not compare by identity

spec/tags/core/set/divide_tags.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fails:Set#divide when passed a block with an arity of 2 returns an enumerator when not passed a block

spec/tags/core/string/modulo_tags.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,6 @@ fails:String#% flags # applies to formats bBxX does nothing for zero argument
88
fails:String#% other formats c displays only the first character if argument is a string of several characters
99
fails:String#% other formats c displays no characters if argument is an empty string
1010
fails:String#% supports only the first character as argument for %c
11+
fails:String#% integer formats d converts to the empty string if precision is 0 and value is 0
12+
fails:String#% integer formats i converts to the empty string if precision is 0 and value is 0
13+
fails:String#% integer formats u converts to the empty string if precision is 0 and value is 0

spec/tags/library/objectspace/trace_object_allocations_tags.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,12 @@ slow:ObjectSpace.trace_object_allocations records info for allocation_class_path
1212
slow:ObjectSpace.trace_object_allocations records info for allocation_method_id
1313
slow:ObjectSpace.trace_object_allocations can be used without a block using trace_object_allocations_start and _stop
1414
slow:ObjectSpace.trace_object_allocations returns nil for class_path, generation, method_id, sourcefile, and sourceline for immutable objects
15+
fails:ObjectSpace.trace_object_allocations records info for allocation_class_path
16+
fails:ObjectSpace.trace_object_allocations records info for allocation_method_id
17+
fails:ObjectSpace.trace_object_allocations can be cleared using trace_object_allocations_clear
18+
fails:ObjectSpace.trace_object_allocations does not clears allocation data after returning
19+
fails:ObjectSpace.trace_object_allocations can be used without a block using trace_object_allocations_start and _stop
20+
fails:ObjectSpace.trace_object_allocations does not clears allocation data after trace_object_allocations_stop
21+
fails:ObjectSpace.trace_object_allocations can be nested
22+
fails:ObjectSpace.trace_object_allocations can be nested without a block using trace_object_allocations_start and _stop
23+
fails:ObjectSpace.trace_object_allocations can be nested with more _stop than _start

spec/tags/library/stringio/printf_tags.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ fails:StringIO#printf formatting flags # applies to format o does nothing for ne
33
fails:StringIO#printf formatting flags # applies to formats bBxX does nothing for zero argument
44
fails:StringIO#printf formatting other formats c displays only the first character if argument is a string of several characters
55
fails:StringIO#printf formatting other formats c displays no characters if argument is an empty string
6+
fails:StringIO#printf formatting integer formats d converts to the empty string if precision is 0 and value is 0
7+
fails:StringIO#printf formatting integer formats i converts to the empty string if precision is 0 and value is 0
8+
fails:StringIO#printf formatting integer formats u converts to the empty string if precision is 0 and value is 0

0 commit comments

Comments
 (0)