diff options
| author | Brian Anderson <[email protected]> | 2011-05-12 22:45:55 -0400 |
|---|---|---|
| committer | Brian Anderson <[email protected]> | 2011-05-12 22:45:55 -0400 |
| commit | 2896a866d6fdcc6dc09d6b6d8ca986e092dbc1c2 (patch) | |
| tree | 806ee018886614fa36191dd3e39797b09a9ffe7c /src | |
| parent | Rename std.extfmt.CT to std.extfmt.RT to ct and rt (diff) | |
| download | rust-2896a866d6fdcc6dc09d6b6d8ca986e092dbc1c2.tar.xz rust-2896a866d6fdcc6dc09d6b6d8ca986e092dbc1c2.zip | |
Change fuzzer to match new module standards
Diffstat (limited to 'src')
| -rw-r--r-- | src/fuzzer/Fuzzer.rs | 3 | ||||
| -rw-r--r-- | src/fuzzer/fuzzer.rc | 2 | ||||
| -rw-r--r-- | src/fuzzer/fuzzer.rs | 3 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/fuzzer/Fuzzer.rs b/src/fuzzer/Fuzzer.rs deleted file mode 100644 index 60db8ecb..00000000 --- a/src/fuzzer/Fuzzer.rs +++ /dev/null @@ -1,3 +0,0 @@ -fn main(vec[str] args) { - rustc.driver.rustc.main(args); -}
\ No newline at end of file diff --git a/src/fuzzer/fuzzer.rc b/src/fuzzer/fuzzer.rc index abe61696..473a7b20 100644 --- a/src/fuzzer/fuzzer.rc +++ b/src/fuzzer/fuzzer.rc @@ -3,7 +3,7 @@ use std; use rustc; -mod Fuzzer; +mod fuzzer; // Local Variables: // fill-column: 78; diff --git a/src/fuzzer/fuzzer.rs b/src/fuzzer/fuzzer.rs new file mode 100644 index 00000000..e071729b --- /dev/null +++ b/src/fuzzer/fuzzer.rs @@ -0,0 +1,3 @@ +fn main(vec[str] args) { + rustc::driver::rustc::main(args); +}
\ No newline at end of file |