filesystem_test.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // Copyright 2021 Google Inc. All rights reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package filesystem
  15. import (
  16. "os"
  17. "testing"
  18. "android/soong/android"
  19. )
  20. func TestMain(m *testing.M) {
  21. os.Exit(m.Run())
  22. }
  23. var fixture = android.GroupFixturePreparers(
  24. android.PrepareForIntegrationTestWithAndroid,
  25. PrepareForTestWithFilesystemBuildComponents,
  26. )
  27. func TestFileSystemDeps(t *testing.T) {
  28. result := fixture.RunTestWithBp(t, `
  29. android_filesystem {
  30. name: "myfilesystem",
  31. }
  32. `)
  33. // produces "myfilesystem.img"
  34. result.ModuleForTests("myfilesystem", "android_common").Output("myfilesystem.img")
  35. }