Skip to content

Commit

Permalink
[Truffle] Bulk untagging more passing specs.
Browse files Browse the repository at this point in the history
  • Loading branch information
bjfish committed Apr 20, 2015
1 parent 5b2f01f commit f77343e
Show file tree
Hide file tree
Showing 23 changed files with 0 additions and 52 deletions.
2 changes: 0 additions & 2 deletions spec/truffle/tags/core/array/cycle_tags.txt

This file was deleted.

1 change: 0 additions & 1 deletion spec/truffle/tags/core/array/frozen_tags.txt

This file was deleted.

1 change: 0 additions & 1 deletion spec/truffle/tags/core/array/inspect_tags.txt

This file was deleted.

1 change: 0 additions & 1 deletion spec/truffle/tags/core/array/intersection_tags.txt

This file was deleted.

1 change: 0 additions & 1 deletion spec/truffle/tags/core/array/join_tags.txt

This file was deleted.

1 change: 0 additions & 1 deletion spec/truffle/tags/core/array/new_tags.txt

This file was deleted.

2 changes: 0 additions & 2 deletions spec/truffle/tags/core/array/sort_by_tags.txt

This file was deleted.

1 change: 0 additions & 1 deletion spec/truffle/tags/core/array/to_s_tags.txt

This file was deleted.

10 changes: 0 additions & 10 deletions spec/truffle/tags/core/enumerable/cycle_tags.txt
@@ -1,11 +1 @@
fails:Enumerable#cycle passed no argument or nil loops indefinitely
fails:Enumerable#cycle passed no argument or nil yields successive elements of the array repeatedly
fails:Enumerable#cycle passed no argument or nil calls each at most once
fails:Enumerable#cycle passed no argument or nil yields only when necessary
fails:Enumerable#cycle passed a number n as an argument returns nil and does nothing for non positive n
fails:Enumerable#cycle passed a number n as an argument calls each at most once
fails:Enumerable#cycle passed a number n as an argument yields only when necessary
fails:Enumerable#cycle passed a number n as an argument tries to convert n to an Integer using #to_int
fails:Enumerable#cycle passed a number n as an argument raises a TypeError when the passed n can be coerced to Integer
fails:Enumerable#cycle passed a number n as an argument raises an ArgumentError if more arguments are passed
fails:Enumerable#cycle passed a number n as an argument gathers whole arrays as elements when each yields multiple
1 change: 0 additions & 1 deletion spec/truffle/tags/core/enumerable/drop_while_tags.txt

This file was deleted.

2 changes: 0 additions & 2 deletions spec/truffle/tags/core/enumerable/each_cons_tags.txt

This file was deleted.

1 change: 0 additions & 1 deletion spec/truffle/tags/core/enumerable/include_tags.txt

This file was deleted.

1 change: 0 additions & 1 deletion spec/truffle/tags/core/enumerable/member_tags.txt

This file was deleted.

1 change: 0 additions & 1 deletion spec/truffle/tags/core/enumerable/take_while_tags.txt

This file was deleted.

4 changes: 0 additions & 4 deletions spec/truffle/tags/core/marshal/load_tags.txt
Expand Up @@ -56,10 +56,6 @@ fails:Marshal.load for a Regexp loads a extended_user_regexp having ivar
fails:Marshal.load for a Integer loads and Integer -8
fails:Marshal.load for a Integer loads an Integer 1234
fails:Marshal.load for a Integer loads an Integer -1234
fails:Marshal.load for a Integer loads an Integer -4611686018427387903
fails:Marshal.load for a Integer loads an Integer 2361183241434822606847
fails:Marshal.load for a Integer loads an Integer -2361183241434822606847
fails:Marshal.load for a Integer roundtrips 4611686018427387903 from dump/load correctly
fails:Marshal.load for a Rational loads
fails:Marshal.load for a Complex loads
fails:Marshal.load for a Time loads
Expand Down
6 changes: 0 additions & 6 deletions spec/truffle/tags/core/marshal/restore_tags.txt
Expand Up @@ -18,7 +18,6 @@ fails:Marshal.restore loads a Struct
fails:Marshal.restore loads a String extended
fails:Marshal.restore loads a String subclass
fails:Marshal.restore loads a String subclass extended
fails:Marshal.restore loads a Bignum -2**63
fails:Marshal.restore loads a Fixnum -2**24
fails:Marshal.restore loads a Fixnum -4516727
fails:Marshal.restore loads a Fixnum -2**16
Expand Down Expand Up @@ -57,11 +56,6 @@ fails:Marshal.restore for a Regexp loads a extended_user_regexp having ivar
fails:Marshal.restore for a Integer loads and Integer -8
fails:Marshal.restore for a Integer loads an Integer 1234
fails:Marshal.restore for a Integer loads an Integer -1234
fails:Marshal.restore for a Integer loads an Integer 4611686018427387903
fails:Marshal.restore for a Integer loads an Integer -4611686018427387903
fails:Marshal.restore for a Integer loads an Integer 2361183241434822606847
fails:Marshal.restore for a Integer loads an Integer -2361183241434822606847
fails:Marshal.restore for a Integer roundtrips 4611686018427387903 from dump/load correctly
fails:Marshal.restore for a Rational loads
fails:Marshal.restore for a Complex loads
fails:Marshal.restore for a Time loads
Expand Down
4 changes: 0 additions & 4 deletions spec/truffle/tags/core/thread/kill_tags.txt
@@ -1,9 +1,5 @@
fails:Thread#kill runs nested ensure clauses
fails:Thread#kill does not set $!
fails:Thread#kill cannot be rescued
fails:Thread#kill kills the entire thread when a fiber is active
fails:Thread#kill can be rescued by outer rescue clause when inner ensure clause raises exception
fails:Thread#kill is deferred if ensure clause does Thread.stop
fails:Thread#kill does not deadlock when called from within the thread while being joined from without
fails:Thread#kill! needs to be reviewed for spec completeness
fails:Thread.kill causes the given thread to exit
1 change: 0 additions & 1 deletion spec/truffle/tags/core/thread/list_tags.txt
Expand Up @@ -2,4 +2,3 @@ fails:Thread::list includes the current and main thread
fails:Thread::list includes threads of non-default thread groups
fails:Thread::list does not include deceased threads
fails:Thread::list includes waiting threads
fails:Thread.list needs to be reviewed for spec completeness
1 change: 0 additions & 1 deletion spec/truffle/tags/core/thread/new_tags.txt
@@ -1,4 +1,3 @@
fails:Thread.new creates a thread executing the given block
fails:Thread.new can pass arguments to the thread block
fails:Thread.new raises an exception when not given a block
fails:Thread.new creates a subclass of thread calls super with a block in initialize
Expand Down
6 changes: 0 additions & 6 deletions spec/truffle/tags/core/thread/raise_tags.txt
@@ -1,14 +1,8 @@
fails:Thread#raise ignores dead threads
fails:Thread#raise on a sleeping thread raises a RuntimeError if no exception class is given
fails:Thread#raise on a sleeping thread raises the given exception
fails:Thread#raise on a sleeping thread raises the given exception with the given message
fails:Thread#raise on a sleeping thread is captured and raised by Thread#value
fails:Thread#raise on a sleeping thread raises a RuntimeError when called with no arguments inside rescue
fails:Thread#raise on a running thread raises a RuntimeError if no exception class is given
fails:Thread#raise on a running thread raises the given exception
fails:Thread#raise on a running thread raises the given exception with the given message
fails:Thread#raise on a running thread can go unhandled
fails:Thread#raise on a running thread raises the given argument even when there is an active exception
fails:Thread#raise on a running thread raises a RuntimeError when called with no arguments inside rescue
fails:Thread#raise on same thread aborts execution
fails:Thread#raise on same thread raises RuntimeError if no exception class is given
Expand Down
1 change: 0 additions & 1 deletion spec/truffle/tags/language/hash_tags.txt
@@ -1,3 +1,2 @@
fails:Hash literal calls #to_hash to convert an '**obj' element
fails:Hash literal merges the containing Hash into the **obj before importing obj's items
fails:Hash literal merges multiple nested '**obj' in Hash literals
2 changes: 0 additions & 2 deletions spec/truffle/tags/language/variables_tags.txt
Expand Up @@ -26,8 +26,6 @@ fails:Multiple assignment with a single RHS value assigns a grouped LHS without
fails:Multiple assignment with a single RHS value assigns a grouped LHS with splats
fails:Multiple assignment with a single RHS value does not mutate a RHS Array
fails:Multiple assignment with a single RHS value calls #to_ary on the value returned by the method call
fails:Multiple assignment with a single RHS value assigns global variables
fails:Multiple assignment with a single RHS value assigns indexed elements
fails:Multiple assignment with a single splatted RHS value calls #to_a to convert nil to an empty Array
fails:Multiple assignment with a single splatted RHS value does not call #to_a if #respond_to? returns false
fails:Multiple assignment with a single splatted RHS value assigns a MLHS with leading splat
Expand Down
1 change: 0 additions & 1 deletion spec/truffle/tags/language/yield_tags.txt
Expand Up @@ -2,4 +2,3 @@ fails:The yield call taking multiple arguments with a splat passes the arguments
fails:The yield call taking multiple arguments with a splat does not pass an argument value if the splatted argument is an empty Array
fails:The yield call taking multiple arguments with a splat passes the Array elements as arguments if the splatted argument is a non-empty Array
fails:The yield call taking multiple arguments with a splat does not pass an argument value if the splatted argument is nil
fails:The yield call taking matching arguments with splats and post args passes the arguments to the block

0 comments on commit f77343e

Please sign in to comment.