Skip to content

Commit 2e8888d

Browse files
committed
[GR-15047] Put ffi tests in proper place.
PullRequest: truffleruby/840
2 parents d4650ef + 25e204b commit 2e8888d

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

ci.jsonnet

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,6 @@ local part_definitions = {
403403
test_gems: { run+: jt(["test", "gems"]) },
404404
test_ecosystem: { run+: jt(["test", "ecosystem"]) },
405405
test_compiler: { run+: jt(["test", "compiler"]) },
406-
test_ffi: { run+: [["test/truffle/ffi.sh"]] },
407406

408407
test_cexts: {
409408
is_after+:: ["$.use.common"],
@@ -523,14 +522,14 @@ local composition_environment = utils.add_inclusion_tracking(part_definitions, "
523522
{
524523
local linux_gate = $.platform.linux + $.cap.gate + $.jdk.labsjdk8 + $.use.common + $.use.build + { timelimit: "01:00:00" },
525524

526-
"ruby-test-specs-linux": linux_gate + $.run.test_unit_tck_specs + $.run.test_basictest + $.run.test_ffi + { timelimit: "35:00" },
527-
"ruby-test-fast-linux": linux_gate + $.run.test_fast + { timelimit: "30:00" }, # To catch missing slow tags
528-
"ruby-test-mri-linux": linux_gate + $.run.test_mri + { timelimit: "30:00" },
529-
"ruby-test-integration": linux_gate + $.run.test_integration,
530-
"ruby-test-cexts-linux": linux_gate + $.use.gem_test_pack + $.run.test_cexts,
531-
"ruby-test-gems": linux_gate + $.use.gem_test_pack + $.run.test_gems,
532-
"ruby-test-ecosystem": linux_gate + $.use.gem_test_pack + $.run.test_ecosystem,
533-
"ruby-test-standalone": linux_gate + $.run.test_make_standalone_distribution + { timelimit: "40:00" },
525+
"ruby-test-specs-linux": linux_gate + $.run.test_unit_tck_specs + $.run.test_basictest + { timelimit: "35:00" },
526+
"ruby-test-fast-linux": linux_gate + $.run.test_fast + { timelimit: "30:00" }, # To catch missing slow tags
527+
"ruby-test-mri-linux": linux_gate + $.run.test_mri + { timelimit: "30:00" },
528+
"ruby-test-integration-linux": linux_gate + $.run.test_integration,
529+
"ruby-test-cexts-linux": linux_gate + $.use.gem_test_pack + $.run.test_cexts,
530+
"ruby-test-gems-linux": linux_gate + $.use.gem_test_pack + $.run.test_gems,
531+
"ruby-test-ecosystem-linux": linux_gate + $.use.gem_test_pack + $.run.test_ecosystem,
532+
"ruby-test-standalone-linux": linux_gate + $.run.test_make_standalone_distribution + { timelimit: "40:00" },
534533

535534
"ruby-test-compiler-graal-core": linux_gate + $.use.truffleruby + $.graal.core + $.run.test_compiler,
536535
# TODO was commented out, needs to be rewritten?
@@ -540,9 +539,10 @@ local composition_environment = utils.add_inclusion_tracking(part_definitions, "
540539
{
541540
local darwin_gate = $.platform.darwin + $.cap.gate + $.jdk.labsjdk8 + $.use.common + $.use.build + { timelimit: "01:00:00" },
542541

543-
"ruby-test-specs-darwin": darwin_gate + $.run.test_unit_tck_specs + $.run.test_basictest + $.run.test_ffi + { timelimit: "45:00" },
542+
"ruby-test-specs-darwin": darwin_gate + $.run.test_unit_tck_specs + $.run.test_basictest + { timelimit: "45:00" },
544543
"ruby-test-mri-darwin": darwin_gate + $.run.test_mri,
545544
"ruby-test-cexts-darwin": darwin_gate + $.use.gem_test_pack + $.run.test_cexts,
545+
"ruby-test-gems-darwin": darwin_gate + $.use.gem_test_pack + $.run.test_gems,
546546
} +
547547

548548
local svm_test_shared = $.jdk.labsjdk8 + $.use.common + $.use.svm + $.cap.gate + $.svm.gate;
File renamed without changes.

tool/jt.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ def help
572572
jt test integration runs all integration tests
573573
jt test integration [TESTS] runs the given integration tests
574574
jt test bundle [--jdebug] tests using bundler
575-
jt test gems tests using gems
575+
jt test gems [TESTS] tests using gems
576576
jt test ecosystem [TESTS] tests using the wider ecosystem such as bundler, Rails, etc
577577
jt test cexts [--no-openssl] [--no-gems] [test_names...]
578578
run C extension tests (set GEM_HOME)

0 commit comments

Comments
 (0)