Skip to content

Commit 396e3a6

Browse files
committed
---
yaml --- r: 78773 b: refs/heads/try c: bbe347c h: refs/heads/master i: 78771: 0ad44ed v: v3
1 parent 352ef48 commit 396e3a6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 25ed29a0edb3d48fef843a0b818ee68faf2252da
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 60fba4d7d677ec098e6a43014132fe99f7547363
5-
refs/heads/try: 2690b513506dad53d0b86b20f8b73bc420dfb3a2
5+
refs/heads/try: bbe347cee79df9cb68ee490ba957e515e3da70a1
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/src/libstd/rt/util.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ use unstable::atomics::{AtomicInt, INIT_ATOMIC_INT, SeqCst};
2020
use unstable::running_on_valgrind;
2121

2222
// Indicates whether we should perform expensive sanity checks, including rtassert!
23-
pub static ENFORCE_SANITY: bool = !cfg!(rtopt) || cfg!(rtdebug) || cfg!(rtassert);
23+
// XXX: Once the runtime matures remove the `true` below to turn off rtassert, etc.
24+
pub static ENFORCE_SANITY: bool = true || !cfg!(rtopt) || cfg!(rtdebug) || cfg!(rtassert);
2425

2526
/// Get the number of cores available
2627
pub fn num_cpus() -> uint {

0 commit comments

Comments
 (0)