diff options
author | deanhiller <[email protected]> | 2007-01-28 01:13:01 +0000 |
---|---|---|
committer | deanhiller <[email protected]> | 2007-01-28 01:13:01 +0000 |
commit | deaf03b30c8968fbcb3dfc22abfeef064d3cca12 (patch) | |
tree | 4c5c0fca0177c1a951bd9160e3072729f20b4cc4 | |
parent | af1c6835c8f43e93cd546b0dfcec0ee2415a0b23 (diff) |
renaming should fix the build. I can't tell as when I run testall, the build seems to hang forever. See if this works better checking it in as that seemed to send out email while my builds on my machine seem to hang. I think the build is now trying to pull these in as tests and they are not tests....my previous bad naming here.
git-svn-id: file:///home/sven/projects/JOGL/temp/ant-contrib/svn/ant-contrib-code/trunk/ant-contrib@76 32d7a393-a5a9-423c-abd3-5d954feb1f2f
10 files changed, 41 insertions, 41 deletions
diff --git a/test/resources/walls/testB/mod/modA/TestBModuleA.java b/test/resources/walls/testB/mod/modA/TestBModuleA.java deleted file mode 100644 index b6b7929..0000000 --- a/test/resources/walls/testB/mod/modA/TestBModuleA.java +++ /dev/null @@ -1,7 +0,0 @@ - -package mod.modA; - -public class TestBModuleA -{ - -};
\ No newline at end of file diff --git a/test/resources/walls/testB/mod/modA/TrialBModuleA.java b/test/resources/walls/testB/mod/modA/TrialBModuleA.java new file mode 100644 index 0000000..56c1a0e --- /dev/null +++ b/test/resources/walls/testB/mod/modA/TrialBModuleA.java @@ -0,0 +1,7 @@ + +package mod.modA; + +public class TrialBModuleA +{ + +};
\ No newline at end of file diff --git a/test/resources/walls/testB/mod/modB/TestBModuleB.java b/test/resources/walls/testB/mod/modB/TestBModuleB.java deleted file mode 100644 index c7428ff..0000000 --- a/test/resources/walls/testB/mod/modB/TestBModuleB.java +++ /dev/null @@ -1,9 +0,0 @@ - -package mod.modB; - -import mod.modA.TestBModuleA; - -public class TestBModuleB -{ - private TestBModuleA temp; -};
\ No newline at end of file diff --git a/test/resources/walls/testB/mod/modB/TrialBModuleB.java b/test/resources/walls/testB/mod/modB/TrialBModuleB.java new file mode 100644 index 0000000..601f45a --- /dev/null +++ b/test/resources/walls/testB/mod/modB/TrialBModuleB.java @@ -0,0 +1,9 @@ + +package mod.modB; + +import mod.modA.TrialBModuleA; + +public class TrialBModuleB +{ + private TrialBModuleA temp; +};
\ No newline at end of file diff --git a/test/resources/walls/testC/mod/TestCModule.java b/test/resources/walls/testC/mod/TestCModule.java deleted file mode 100644 index 5d9c0e8..0000000 --- a/test/resources/walls/testC/mod/TestCModule.java +++ /dev/null @@ -1,11 +0,0 @@ - -package mod; - -import mod.modA.TestCModuleA; -import mod.modB.TestCModuleB; - -public class TestCModule -{ - private TestCModuleA temp1; - private TestCModuleB temp2; -};
\ No newline at end of file diff --git a/test/resources/walls/testC/mod/TrialCModule.java b/test/resources/walls/testC/mod/TrialCModule.java new file mode 100644 index 0000000..2b175d6 --- /dev/null +++ b/test/resources/walls/testC/mod/TrialCModule.java @@ -0,0 +1,11 @@ + +package mod; + +import mod.modA.TrialCModuleA; +import mod.modB.TrialCModuleB; + +public class TrialCModule +{ + private TrialCModuleA temp1; + private TrialCModuleB temp2; +};
\ No newline at end of file diff --git a/test/resources/walls/testC/mod/modA/TestCModuleA.java b/test/resources/walls/testC/mod/modA/TestCModuleA.java deleted file mode 100644 index 8b9f8d6..0000000 --- a/test/resources/walls/testC/mod/modA/TestCModuleA.java +++ /dev/null @@ -1,7 +0,0 @@ - -package mod.modA; - -public class TestCModuleA -{ - -};
\ No newline at end of file diff --git a/test/resources/walls/testC/mod/modA/TrialCModuleA.java b/test/resources/walls/testC/mod/modA/TrialCModuleA.java new file mode 100644 index 0000000..a7c6a89 --- /dev/null +++ b/test/resources/walls/testC/mod/modA/TrialCModuleA.java @@ -0,0 +1,7 @@ + +package mod.modA; + +public class TrialCModuleA +{ + +};
\ No newline at end of file diff --git a/test/resources/walls/testC/mod/modB/TestCModuleB.java b/test/resources/walls/testC/mod/modB/TestCModuleB.java deleted file mode 100644 index 989ebdf..0000000 --- a/test/resources/walls/testC/mod/modB/TestCModuleB.java +++ /dev/null @@ -1,7 +0,0 @@ - -package mod.modB; - - -public class TestCModuleB -{ -};
\ No newline at end of file diff --git a/test/resources/walls/testC/mod/modB/TrialCModuleB.java b/test/resources/walls/testC/mod/modB/TrialCModuleB.java new file mode 100644 index 0000000..a2fc958 --- /dev/null +++ b/test/resources/walls/testC/mod/modB/TrialCModuleB.java @@ -0,0 +1,7 @@ + +package mod.modB; + + +public class TrialCModuleB +{ +};
\ No newline at end of file |