diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-07-18 07:17:10 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-07-18 07:17:10 +0000 |
commit | 162525457320b5dba9a4e736759f840757635231 (patch) | |
tree | b00464b34a924f41622bebef4fa3b72750744bd6 /src/unit | |
parent | d7ea32daa44c9e0cc4ac00a69168b4e1d182082b (diff) | |
download | libbu++-162525457320b5dba9a4e736759f840757635231.tar.gz libbu++-162525457320b5dba9a4e736759f840757635231.tar.bz2 libbu++-162525457320b5dba9a4e736759f840757635231.tar.xz libbu++-162525457320b5dba9a4e736759f840757635231.zip |
Incorporated a patch contributed by Brandon CS Sanders that allows libbu++ to
compile under OSX. So far, no problems with anything else, it looks like build
and nango both build without problems, libbu++ is truly becoming a full cross-
platform toolkit.
Diffstat (limited to '')
-rw-r--r-- | src/unit/fstring.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/unit/fstring.cpp b/src/unit/fstring.cpp index 2c6bf7a..462ce5e 100644 --- a/src/unit/fstring.cpp +++ b/src/unit/fstring.cpp | |||
@@ -9,6 +9,7 @@ public: | |||
9 | setName("FString"); | 9 | setName("FString"); |
10 | addTest( Unit::compare1 ); | 10 | addTest( Unit::compare1 ); |
11 | addTest( Unit::compare2 ); | 11 | addTest( Unit::compare2 ); |
12 | addTest( Unit::appendSingle ); | ||
12 | } | 13 | } |
13 | 14 | ||
14 | virtual ~Unit() | 15 | virtual ~Unit() |
@@ -28,6 +29,14 @@ public: | |||
28 | unitTest( !(b == "Bob") ); | 29 | unitTest( !(b == "Bob") ); |
29 | unitTest( b == "Bobo" ); | 30 | unitTest( b == "Bobo" ); |
30 | } | 31 | } |
32 | |||
33 | void appendSingle() | ||
34 | { | ||
35 | Bu::FString b; | ||
36 | for( char l = 'a'; l < 'g'; l++ ) | ||
37 | b += l; | ||
38 | unitTest( b == "abcdef" ); | ||
39 | } | ||
31 | }; | 40 | }; |
32 | 41 | ||
33 | int main( int argc, char *argv[] ) | 42 | int main( int argc, char *argv[] ) |