diff options
author | unknown <obarnir@mysql.com> | 2005-06-09 11:01:23 -0700 |
---|---|---|
committer | unknown <obarnir@mysql.com> | 2005-06-09 11:01:23 -0700 |
commit | a1650deab6a1685dc81535ab332c28fb706ee1c8 (patch) | |
tree | c0e25802dc44e48228be48f7488898e141606eef /mysql-test/r/mysqltest.result | |
parent | 9227cf4254dc9e9ece41d9eabc164b05a621638a (diff) | |
download | mariadb-git-a1650deab6a1685dc81535ab332c28fb706ee1c8.tar.gz |
Adding auxiliary scripts that allow to display messages in result files from within test files
- show_msg.inc - displays a message followed by a line of '-' at the length of the messgae
- show_msg80.inc - displays a message followed by a line of '-' with a fixed length of 80
mysql-test/r/mysqltest.result:
Updated result file
mysql-test/t/mysqltest.test:
Added test cases to test the show_msg.inc and show_msg80.inc auxiliary files
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'mysql-test/r/mysqltest.result')
-rw-r--r-- | mysql-test/r/mysqltest.result | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mysql-test/r/mysqltest.result b/mysql-test/r/mysqltest.result index 51e56c21a07..87e2fca970b 100644 --- a/mysql-test/r/mysqltest.result +++ b/mysql-test/r/mysqltest.result @@ -148,3 +148,17 @@ a'b a"b select 'aaa\\','aa''a',"aa""a"; aaa\ aa'a aa"a aaa\ aa'a aa"a +SET @message = 'Here comes a message'; + +Here comes a message +-------------------- +SET @message = USER(); + +root@localhost +-------------- +SET @message = 'Here comes a very very long message that is longer then 80 characters +on multiple lines'; + +Here comes a very very long message that is longer then 80 characters +on multiple lines +-------------------------------------------------------------------------------- |