aboutsummaryrefslogtreecommitdiff
path: root/compiler_wrapper/aarch64_flags_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'compiler_wrapper/aarch64_flags_test.go')
-rw-r--r--compiler_wrapper/aarch64_flags_test.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/compiler_wrapper/aarch64_flags_test.go b/compiler_wrapper/aarch64_flags_test.go
deleted file mode 100644
index 0cb692e2..00000000
--- a/compiler_wrapper/aarch64_flags_test.go
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright 2020 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"
-)
-
-func TestAddSlsFlagOnAarch64(t *testing.T) {
- withTestContext(t, func(ctx *testContext) {
- cmd := ctx.must(callCompiler(ctx, ctx.cfg,
- ctx.newCommand(clangAarch64, mainCc)))
- if err := verifyArgOrder(cmd, "-mharden-sls=all", mainCc); err != nil {
- t.Error(err)
- }
- })
-}