aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/optional
Commit message (Collapse)AuthorAgeFilesLines
* Update to ruby/spec@4ce9f41Benoit Daloze2020-12-277-21/+52
|
* Remvoed no longer needed version guardsNobuyoshi Nakada2020-12-223-16/+0
|
* Removed rb_cData entityNobuyoshi Nakada2020-12-222-0/+8
| | | | | | | * Use the wrapper of rb_cObject instead of data access * Replaced rest of extentions * Updated the version guard for Data * Added the version guard of rb_cData
* Update to ruby/spec@ac878adBenoit Daloze2020-11-272-0/+53
|
* Suppress a unused-variable warningNobuyoshi Nakada2020-11-221-0/+2
|
* Update to ruby/spec@b0b7f53Benoit Daloze2020-11-133-6/+14
|
* Remove spec which is too difficult to get working with various compilersBenoit Daloze2020-10-262-14/+0
| | | | * The spec means to use an actual system library function, not a wrapper.
* Use gcc-specific pragma only on gcc (and the family)Nobuyoshi Nakada2020-10-261-0/+2
|
* Fix compilation on MSVCNobuyoshi Nakada2020-10-251-9/+4
| | | | | * cast scalar value instead of function * use `rb_pid_t` for the portability
* Try to fix compilation on MSVCBenoit Daloze2020-10-251-0/+6
|
* Update to ruby/spec@4f59d86Benoit Daloze2020-10-242-0/+13
|
* Update to ruby/spec@9277d27Benoit Daloze2020-09-304-0/+36
|
* should not check taint flag on rubyspec.Koichi Sasada2020-09-252-2/+6
| | | | | Now taint flag is obsolete and it is used fro shareaable flag. So we should not check this flag.
* 2.8 -> 3.0 in specsBenoit Daloze2020-09-151-4/+4
|
* Update to ruby/spec@335eb9bBenoit Daloze2020-08-282-0/+10
|
* Do not assume all compilers accept same flags as gccNobuyoshi Nakada2020-07-281-1/+1
|
* Update to ruby/spec@07164daBenoit Daloze2020-07-276-0/+110
|
* RBasci::flags (VALUE) doesn't match int.Koichi Sasada2020-07-151-6/+17
| | | | | The type of RBasic::flags is VALUE, and INT2FIX(flags) does not make sense. Use correct type to represent.
* Update to ruby/spec@6c466d4Benoit Daloze2020-06-271-1/+1
|
* Update to ruby/spec@b6b7752Benoit Daloze2020-06-2712-4/+180
|
* Make sure rb_enc_str_new_static() is used when enc is NULLBenoit Daloze2020-06-011-2/+7
| | | | | | * The definition of the rb_enc_str_new_cstr macro depends on HAVE_BUILTIN___BUILTIN_CONSTANT_P. * It SEGV on mswin otherwise.
* Update to ruby/spec@4e486faBenoit Daloze2020-05-316-0/+192
|
* Update to ruby/spec@032ee74Benoit Daloze2020-05-035-24/+24
|
* Show unreserved bits onlyNobuyoshi Nakada2020-05-032-11/+18
| | | | `RUBY_FL_SEEN_OBJ_ID` can be set by #object_id.
* DO NOT CORRUPT TYPE FLAGSNobuyoshi Nakada2020-05-031-8/+11
|
* Fixed missing `should`Nobuyoshi Nakada2020-05-031-1/+1
|
* append newline at EOF [ci skip]Nobuyoshi Nakada2020-05-021-1/+1
|
* Update to ruby/spec@d394dfdBenoit Daloze2020-05-029-1/+389
|
* Suppress -Wshorten-64-to-32 warningsNobuyoshi Nakada2020-04-081-1/+1
|
* Merge pull request #2991 from shyouhei/ruby.h卜部昌平2020-04-081-5/+1
| | | Split ruby.h
* Fixed the location of the shared libraryNobuyoshi Nakada2020-04-041-5/+3
| | | | | | | On platform where searchs shared libraries by `PATH` environment variable (i.e., Windows), the shared library is installed in `bindir`. On other platforms, the library directory is directed by `libdirname` indirectly.
* Update to ruby/spec@7289ea3Benoit Daloze2020-04-041-3/+2
|
* Drop support for ruby 2.4 from ruby/specNobuyoshi Nakada2020-04-013-76/+50
|
* Use FrozenError instead of frozen_error_classNobuyoshi Nakada2020-04-014-18/+18
|
* Remove spec which is an incorrect usage of rb_rescue2()Benoit Daloze2020-03-282-36/+0
| | | | * It segfaults on MRI.
* spec/ruby/optional/capi/kernel_spec.rb: stop a spec that causes SEGVYusuke Endoh2020-03-281-10/+18
| | | | | I think the wrong terminating argument cannot work. To stop the noisy CI failures, the spec is tentatively suspended.
* Update to ruby/spec@ec84479Benoit Daloze2020-03-2821-300/+445
|
* Removed non-RUBY_INTEGER_UNIFICATION codeNobuyoshi Nakada2020-03-211-18/+0
|
* Adjust typesNobuyoshi Nakada2020-02-291-2/+1
|
* Update to ruby/spec@41bf282Benoit Daloze2020-02-2832-85/+349
|
* Warn non-nil `$/` [Feature #14240]Nobuyoshi Nakada2020-02-231-2/+2
|
* Warn non-nil `$\` [Feature #14240]Nobuyoshi Nakada2020-02-231-2/+2
|
* Update to ruby/spec@f8a2d54Benoit Daloze2020-01-285-1/+140
|
* Freeze Regexp literalsJean Boussier2020-01-151-3/+3
| | | | | | | [Feature #8948] [Feature #16377] Since Regexp literals always reference the same instance, allowing to mutate them can lead to state leak.
* Update specs for keyword argument separationJeremy Evans2020-01-021-25/+58
|
* MinGW on Actions (#2791)MSP-Greg2019-12-301-13/+15
| | | | | | | | | | | | | | | | | | | * MinGW - skip spec in spec/ruby/optional/capi/thread_spec.rb C-API Thread function rb_thread_call_without_gvl -- runs a C function with the global lock unlocked and unlocks IO with the generic RUBY_UBF_IO stops/freezes spec tests See https://bugs.ruby-lang.org/issues/16265 * MinGW - skip test test/resolv/test_dns.rb Test times out in CI (both AppVeyor & Actions), cannot repo locally * MinGW - skip test test/ruby/test_thread_queue.rb * Add Actions mingw.yml
* Update to ruby/spec@d419e74Benoit Daloze2019-12-2710-0/+92
|
* Fixed misspellingsNobuyoshi Nakada2019-12-201-1/+1
| | | | Fixed misspellings reported at [Bug #16437], only in ruby and rubyspec.
* Fixed type of an index variableNobuyoshi Nakada2019-12-011-1/+1
|
* Update to ruby/spec@4eec3dcBenoit Daloze2019-11-308-2/+89
|