2018-12-14 07:01:46 +08:00
|
|
|
// Copyright 2018 Google Inc. 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.
|
|
|
|
|
|
|
|
package bpf
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"android/soong/android"
|
2019-05-15 07:05:20 +08:00
|
|
|
"android/soong/cc"
|
2018-12-14 07:01:46 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2021-03-16 21:36:55 +08:00
|
|
|
os.Exit(m.Run())
|
2019-12-14 12:41:13 +08:00
|
|
|
}
|
|
|
|
|
2021-03-20 08:36:55 +08:00
|
|
|
var prepareForBpfTest = android.GroupFixturePreparers(
|
2021-02-25 02:51:54 +08:00
|
|
|
cc.PrepareForTestWithCcDefaultModules,
|
|
|
|
android.FixtureMergeMockFs(
|
|
|
|
map[string][]byte{
|
|
|
|
"bpf.c": nil,
|
|
|
|
"BpfTest.cpp": nil,
|
|
|
|
},
|
|
|
|
),
|
|
|
|
PrepareForTestWithBpf,
|
|
|
|
)
|
2018-12-14 07:01:46 +08:00
|
|
|
|
|
|
|
func TestBpfDataDependency(t *testing.T) {
|
|
|
|
bp := `
|
|
|
|
bpf {
|
|
|
|
name: "bpf.o",
|
|
|
|
srcs: ["bpf.c"],
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_test {
|
|
|
|
name: "vts_test_binary_bpf_module",
|
|
|
|
srcs: ["BpfTest.cpp"],
|
|
|
|
data: [":bpf.o"],
|
2019-05-15 07:05:20 +08:00
|
|
|
gtest: false,
|
2018-12-14 07:01:46 +08:00
|
|
|
}
|
|
|
|
`
|
|
|
|
|
2021-03-20 08:36:55 +08:00
|
|
|
prepareForBpfTest.RunTestWithBp(t, bp)
|
2018-12-14 07:01:46 +08:00
|
|
|
|
|
|
|
// We only verify the above BP configuration is processed successfully since the data property
|
|
|
|
// value is not available for testing from this package.
|
|
|
|
// TODO(jungjw): Add a check for data or move this test to the cc package.
|
|
|
|
}
|