diff options
| author | 2019-10-16 21:09:59 +0000 | |
|---|---|---|
| committer | 2019-10-16 21:09:59 +0000 | |
| commit | 959a3ffbda4a91d88567d6339ea555c4899cc10c (patch) | |
| tree | c2e47bcfa3f5835dc31c315635a08abadfe7e354 | |
| parent | 98eccba8b4bea1a069f68d4a605e9e83f2e86860 (diff) | |
| parent | 641575ad411f548583eb7798562963d99bbdbad5 (diff) | |
Merge "Fuzz corpus entries should not go in a subdirectory."
| -rw-r--r-- | cc/fuzz.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/fuzz.go b/cc/fuzz.go index b8b9c7140..e65e8ded7 100644 --- a/cc/fuzz.go +++ b/cc/fuzz.go @@ -215,7 +215,7 @@ func (s *fuzzPackager) GenerateBuildActions(ctx android.SingletonContext) { // The corpora. for _, corpusEntry := range fuzzModule.corpus { archDirs[archDir] = append(archDirs[archDir], - fileToZip{corpusEntry, ccModule.Name() + "/corpus/" + corpusEntry.Base()}) + fileToZip{corpusEntry, ccModule.Name() + "/corpus"}) } // The dictionary. |