From 7c68139f5cbb562dd8fa0aa1021757ff9ded7378 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Fri, 30 Aug 2024 14:59:48 -0700 Subject: [PATCH 1/2] wip: move bootstrap impl tests elsewhere --- tests/{base_rules => bootstrap_impls}/BUILD.bazel | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/{base_rules => bootstrap_impls}/BUILD.bazel (100%) diff --git a/tests/base_rules/BUILD.bazel b/tests/bootstrap_impls/BUILD.bazel similarity index 100% rename from tests/base_rules/BUILD.bazel rename to tests/bootstrap_impls/BUILD.bazel From 938c3395be695f053be513d5fddb33acba09fd41 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Fri, 30 Aug 2024 15:00:31 -0700 Subject: [PATCH 2/2] readd base_rules build.bazel --- tests/base_rules/BUILD.bazel | 13 +++++++++++++ tests/{base_rules => bootstrap_impls}/bin.py | 0 .../inherit_pythonsafepath_env_test.sh | 0 .../run_binary_zip_no_test.sh | 0 .../run_binary_zip_yes_test.sh | 0 .../{base_rules => bootstrap_impls}/run_zip_test.sh | 0 .../sys_path_order_test.py | 0 7 files changed, 13 insertions(+) create mode 100644 tests/base_rules/BUILD.bazel rename tests/{base_rules => bootstrap_impls}/bin.py (100%) rename tests/{base_rules => bootstrap_impls}/inherit_pythonsafepath_env_test.sh (100%) rename tests/{base_rules => bootstrap_impls}/run_binary_zip_no_test.sh (100%) rename tests/{base_rules => bootstrap_impls}/run_binary_zip_yes_test.sh (100%) rename tests/{base_rules => bootstrap_impls}/run_zip_test.sh (100%) rename tests/{base_rules => bootstrap_impls}/sys_path_order_test.py (100%) diff --git a/tests/base_rules/BUILD.bazel b/tests/base_rules/BUILD.bazel new file mode 100644 index 0000000000..aa21042e25 --- /dev/null +++ b/tests/base_rules/BUILD.bazel @@ -0,0 +1,13 @@ +# Copyright 2023 The Bazel Authors. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. diff --git a/tests/base_rules/bin.py b/tests/bootstrap_impls/bin.py similarity index 100% rename from tests/base_rules/bin.py rename to tests/bootstrap_impls/bin.py diff --git a/tests/base_rules/inherit_pythonsafepath_env_test.sh b/tests/bootstrap_impls/inherit_pythonsafepath_env_test.sh similarity index 100% rename from tests/base_rules/inherit_pythonsafepath_env_test.sh rename to tests/bootstrap_impls/inherit_pythonsafepath_env_test.sh diff --git a/tests/base_rules/run_binary_zip_no_test.sh b/tests/bootstrap_impls/run_binary_zip_no_test.sh similarity index 100% rename from tests/base_rules/run_binary_zip_no_test.sh rename to tests/bootstrap_impls/run_binary_zip_no_test.sh diff --git a/tests/base_rules/run_binary_zip_yes_test.sh b/tests/bootstrap_impls/run_binary_zip_yes_test.sh similarity index 100% rename from tests/base_rules/run_binary_zip_yes_test.sh rename to tests/bootstrap_impls/run_binary_zip_yes_test.sh diff --git a/tests/base_rules/run_zip_test.sh b/tests/bootstrap_impls/run_zip_test.sh similarity index 100% rename from tests/base_rules/run_zip_test.sh rename to tests/bootstrap_impls/run_zip_test.sh diff --git a/tests/base_rules/sys_path_order_test.py b/tests/bootstrap_impls/sys_path_order_test.py similarity index 100% rename from tests/base_rules/sys_path_order_test.py rename to tests/bootstrap_impls/sys_path_order_test.py