aboutsummaryrefslogtreecommitdiff
path: root/compiler_wrapper/aarch64_flags_test.go
blob: 0cb692e22a628dd4d1cabcd1201cc4e9053ea377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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)
		}
	})
}