gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog testsuite/check.h


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog testsuite/check.h
Date: Wed, 22 Nov 2006 11:42:22 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  06/11/22 11:42:22

Modified files:
        .              : ChangeLog 
        testsuite      : check.h 

Log message:
                * testsuite/check.h: add an 'info' macro as a proxy to dejagnu's
                  note() function, with a fallback stub.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.1703&r2=1.1704
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/check.h?cvsroot=gnash&r1=1.4&r2=1.5

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.1703
retrieving revision 1.1704
diff -u -b -r1.1703 -r1.1704
--- ChangeLog   22 Nov 2006 10:33:03 -0000      1.1703
+++ ChangeLog   22 Nov 2006 11:42:21 -0000      1.1704
@@ -1,5 +1,7 @@
 2006-11-21 Sandro Santilli <address@hidden>
 
+       * testsuite/check.h: add an 'info' macro as a proxy to dejagnu's
+         note() function, with a fallback stub.
        * testsuite/actionscript.all/MovieClip.as: fix some expected
          values to match the defaults.
        * testsuite/actionscript.all/Mouse.as: instantiation

Index: testsuite/check.h
===================================================================
RCS file: /sources/gnash/gnash/testsuite/check.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- testsuite/check.h   5 Nov 2006 00:45:27 -0000       1.4
+++ testsuite/check.h   22 Nov 2006 11:42:21 -0000      1.5
@@ -11,6 +11,9 @@
 
 #ifdef HAVE_DEJAGNU_H
 #include "dejagnu.h"
+
+#define info(x) note x
+
 #else
 #warning "You should install DejaGnu! Using stubs for pass/fail..."
 class TestState 
@@ -20,6 +23,8 @@
   void fail(std::string s) { std::cout << "FAILED: " << s << std::endl;  };
 };
 
+#define info(x) { printf("NOTE: "); printf x; putchar('\n'); }
+
 #endif
 
 TestState _runtest;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]