Index: t/basic.t
===================================================================
--- t/basic.t (revision 12873)
+++ t/basic.t (working copy)
@@ -195,12 +195,12 @@
is_deeply $mb->extra_linker_flags, ['-L/foo', '-L/bar'], "Should split shell string into list";
# Try again with command-line args
- eval {Module::Build->run_perl_script('Build.PL', [], ['--extra_compiler_flags', '-I/foo -I/bar',
- '--extra_linker_flags', '-L/foo -L/bar'])};
+ eval {Module::Build->run_perl_script('Build.PL', [], ['--extra_compiler_flags', '-I/foo -Wall',
+ '--extra_linker_flags', '-L/foo -Wall'])};
$mb = Module::Build->resume;
ok $mb;
- is_deeply $mb->extra_compiler_flags, ['-I/foo', '-I/bar'], "Should split shell string into list";
- is_deeply $mb->extra_linker_flags, ['-L/foo', '-L/bar'], "Should split shell string into list";
+ is_deeply $mb->extra_compiler_flags, ['-I/foo', '-Wall'], "Should split shell string into list";
+ is_deeply $mb->extra_linker_flags, ['-L/foo', '-Wall'], "Should split shell string into list";
}