(self)
| 78 | list(map(abs_test_file, expected))) |
| 79 | |
| 80 | def testFileList_arm(self): |
| 81 | options = Options(TESTDATA_PATH, 'arm', 1, 0, False) |
| 82 | expected = [ |
| 83 | 'file1.cc', |
| 84 | 'file2.cc', |
| 85 | 'file3.cc', |
| 86 | 'file4.cc', |
| 87 | 'arm/file1.cc', |
| 88 | 'arm/file2.cc', |
| 89 | ] |
| 90 | self.assertEqual( |
| 91 | gcmole.build_file_list(options), |
| 92 | list(map(abs_test_file, expected))) |
| 93 | |
| 94 | |
| 95 | GC = 'Foo,NowCollectAllTheGarbage' |