aboutsummaryrefslogtreecommitdiff
path: root/compiler_wrapper/cros_nonhardened_config_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'compiler_wrapper/cros_nonhardened_config_test.go')
-rw-r--r--compiler_wrapper/cros_nonhardened_config_test.go26
1 files changed, 0 insertions, 26 deletions
diff --git a/compiler_wrapper/cros_nonhardened_config_test.go b/compiler_wrapper/cros_nonhardened_config_test.go
deleted file mode 100644
index bf8af4d2..00000000
--- a/compiler_wrapper/cros_nonhardened_config_test.go
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2019 The Chromium OS Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-package main
-
-import (
- "testing"
-)
-
-const oldNonHardenedWrapperPathForTest = "$CHROOT/usr/x86_64-pc-linux-gnu/arm-none-eabi/gcc-bin/4.9.x/sysroot_wrapper"
-const crosNonHardenedGoldenDir = "testdata/cros_nonhardened_golden"
-
-func TestCrosNonHardenedConfig(t *testing.T) {
- withTestContext(t, func(ctx *testContext) {
- useLlvmNext := false
- useCCache := true
- cfg, err := getConfig("cros.nonhardened", useCCache, useLlvmNext, oldNonHardenedWrapperPathForTest, "123")
- if err != nil {
- t.Fatal(err)
- }
- ctx.updateConfig(cfg)
-
- runGoldenRecords(ctx, crosNonHardenedGoldenDir, createSyswrapperGoldenInputs(ctx))
- })
-}