Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Unified Diff: unittest/BitcodeMunge.h

Issue 1149423011: Clean up unit munging unit tests using common NaCl API. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Makefile.standalone ('k') | unittest/BitcodeMunge.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: unittest/BitcodeMunge.h
diff --git a/unittest/BitcodeMunge.h b/unittest/BitcodeMunge.h
index 0b998642dee44d3542c0a7c6a6faba6415a5320f..b5f6ea2d28cf44250416ec4b5f879eee60434233 100644
--- a/unittest/BitcodeMunge.h
+++ b/unittest/BitcodeMunge.h
@@ -36,12 +36,12 @@ public:
/// Runs PNaClTranslator to translate bitcode records (with defined
/// record Munges), and puts output into DumpResults. Returns true
/// if parse is successful.
- bool runTest(const char *TestName, const uint64_t Munges[], size_t MungeSize);
+ bool runTest(const uint64_t Munges[], size_t MungeSize);
/// Same as above, but without any edits.
- bool runTest(const char *TestName) {
+ bool runTest() {
uint64_t NoMunges[] = {0};
- return runTest(TestName, NoMunges, 0);
+ return runTest(NoMunges, 0);
}
/// Sets flags back to default assumptions for munging.
« no previous file with comments | « Makefile.standalone ('k') | unittest/BitcodeMunge.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698