rust/src/test
Huon Wilson b48e37e8ee syntax: make a macros-injection pass; conditionally define debug! to a noop based on cfg(debug).
Macros can be conditionally defined because stripping occurs before macro
expansion, but, the built-in macros were only added as part of the actual
expansion process and so couldn't be stripped to have definitions conditional
on cfg flags.

debug! is defined conditionally in terms of the debug config, expanding to
nothing unless the --cfg debug flag is passed (to be precise it expands to
`if false { normal_debug!(...) }` so that they are still type checked, and
to avoid unused variable lints).
2013-07-16 15:05:50 +10:00
..
auxiliary Take default methods out from behind the flag. 2013-07-11 15:51:10 -07:00
bench Un-broke benchmarks 2013-07-13 20:30:05 -07:00
codegen wire up makefile to run codegen tests and add one to start 2013-07-11 13:15:52 -07:00
compile-fail Make TLS keys actually take up space 2013-07-14 10:15:07 -07:00
debug-info debuginfo: Some corrections after review. 2013-06-27 19:28:37 +02:00
pretty Fix fallout from span change 2013-07-05 14:56:54 +09:00
run-fail fix test 2013-07-10 13:14:31 -04:00
run-pass syntax: make a macros-injection pass; conditionally define debug! to a noop based on cfg(debug). 2013-07-16 15:05:50 +10:00
run-pass-fulldeps Fix pretty printer, which was ignoring ref in irrefutable patterns 2013-07-08 13:55:10 -04:00