| # Copyright 2018 The Fuchsia Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| import("//build/testing/environments.gni") |
| import("//src/sys/appmgr/integration_tests/sandbox/sandbox_test_package.gni") |
| |
| group("shell-commands") { |
| testonly = true |
| deps = [ |
| ":has_shell_commands", |
| ":no_shell_commands", |
| ] |
| } |
| |
| sandbox_test_package("has_shell_commands") { |
| sources = [ "has_shell_commands.cc" ] |
| |
| deps = [ |
| "//src/lib/fxl/test:gtest_main", |
| "//src/sys/appmgr/integration_tests/sandbox:namespace_test", |
| ] |
| environments = basic_envs |
| } |
| |
| sandbox_test_package("no_shell_commands") { |
| sources = [ "no_shell_commands.cc" ] |
| |
| deps = [ |
| "//src/lib/fxl/test:gtest_main", |
| "//src/sys/appmgr/integration_tests/sandbox:namespace_test", |
| ] |
| environments = basic_envs |
| } |