summaryrefslogtreecommitdiff
path: root/idlc/test/parser/typedef.tests
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2006-11-06 13:42:41 +0000
committerKurt Zenker <kz@openoffice.org>2006-11-06 13:42:41 +0000
commit5776a8e16a1ac825b8a99fb99a0f935baae1e6a0 (patch)
tree3270d4f730343258edf9aa6bc30fa10fbf1f37da /idlc/test/parser/typedef.tests
parent4bd50487b8d3b99af7ee367b8fe132d7ba9a101e (diff)
INTEGRATION: CWS jsc14 (1.3.40); FILE MERGED
2006/10/25 13:51:07 jsc 1.3.40.1: #i69727# adapt and simplify tests
Diffstat (limited to 'idlc/test/parser/typedef.tests')
-rw-r--r--idlc/test/parser/typedef.tests13
1 files changed, 2 insertions, 11 deletions
diff --git a/idlc/test/parser/typedef.tests b/idlc/test/parser/typedef.tests
index 3a41883c7720..5f66f0408cb5 100644
--- a/idlc/test/parser/typedef.tests
+++ b/idlc/test/parser/typedef.tests
@@ -4,9 +4,9 @@
#
# $RCSfile: typedef.tests,v $
#
-# $Revision: 1.3 $
+# $Revision: 1.4 $
#
-# last change: $Author: rt $ $Date: 2005-09-07 18:19:49 $
+# last change: $Author: kz $ $Date: 2006-11-06 14:42:41 $
#
# The Contents of this file are made available subject to
# the terms of GNU Lesser General Public License Version 2.1.
@@ -47,9 +47,6 @@ struct Struct: T2 { long member2; };
EXPECT SUCCESS "typedef.tests 3":
-module com { module sun { module star { module uno {
- interface XInterface { void acquire(); };
-}; }; }; };
interface Interface1 {};
typedef Interface1 T1;
typedef T1 T2;
@@ -57,9 +54,6 @@ interface Interface2: T2 {};
EXPECT FAILURE "typedef.tests 4":
-module com { module sun { module star { module uno {
- interface XInterface { void acquire(); };
-}; }; }; };
interface Interface1;
typedef Interface1 T1;
typedef T1 T2;
@@ -67,9 +61,6 @@ interface Interface2: T2 {};
EXPECT FAILURE "typedef.tests 5":
-module com { module sun { module star { module uno {
- interface XInterface { void acquire(); };
-}; }; }; };
typedef long T1;
typedef T1 T2;
interface Interface: T2 {};