rust/src/test/run-pass/istr.rs

73 lines
1.8 KiB
Rust
Raw Normal View History

// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2011-08-22 13:53:39 -07:00
fn test_stack_assign() {
let s: ~str = ~"a";
2012-12-05 16:51:32 -08:00
log(debug, copy s);
let t: ~str = ~"a";
fail_unless!((s == t));
let u: ~str = ~"b";
fail_unless!((s != u));
2011-08-22 13:53:39 -07:00
}
fn test_heap_lit() { ~"a big string"; }
2011-08-22 13:53:39 -07:00
fn test_heap_assign() {
let s: ~str = ~"a big ol' string";
let t: ~str = ~"a big ol' string";
fail_unless!((s == t));
let u: ~str = ~"a bad ol' string";
fail_unless!((s != u));
}
fn test_heap_log() { let s = ~"a big ol' string"; log(debug, s); }
2011-08-22 16:39:18 -07:00
fn test_stack_add() {
fail_unless!((~"a" + ~"b" == ~"ab"));
let s: ~str = ~"a";
fail_unless!((s + s == ~"aa"));
fail_unless!((~"" + ~"" == ~""));
2011-08-22 16:39:18 -07:00
}
fn test_stack_heap_add() { fail_unless!((~"a" + ~"bracadabra" == ~"abracadabra")); }
2011-08-22 16:39:18 -07:00
fn test_heap_add() {
fail_unless!((~"this should" + ~" totally work" == ~"this should totally work"));
2011-08-22 16:39:18 -07:00
}
fn test_append() {
let mut s = ~"";
s += ~"a";
fail_unless!((s == ~"a"));
let mut s = ~"a";
s += ~"b";
2012-12-05 16:51:32 -08:00
log(debug, copy s);
fail_unless!((s == ~"ab"));
let mut s = ~"c";
s += ~"offee";
fail_unless!((s == ~"coffee"));
s += ~"&tea";
fail_unless!((s == ~"coffee&tea"));
}
pub fn main() {
2011-08-22 13:53:39 -07:00
test_stack_assign();
test_heap_lit();
test_heap_assign();
test_heap_log();
2011-08-22 16:39:18 -07:00
test_stack_add();
test_stack_heap_add();
test_heap_add();
test_append();
2011-09-02 15:34:58 -07:00
}