diff options
author | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:21 +0000 |
---|---|---|
committer | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:21 +0000 |
commit | 3aff90f4a822fcf5d902bbfbcc9fa931d6191a8c (patch) | |
tree | 197c810e5f5bce17b1233a7cb8d7b50c0bcd25e2 /TAO/tests/Bug_1812_Regression | |
parent | 6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (diff) | |
download | ATCD-3aff90f4a822fcf5d902bbfbcc9fa931d6191a8c.tar.gz |
Repo restructuring
Diffstat (limited to 'TAO/tests/Bug_1812_Regression')
-rwxr-xr-x | TAO/tests/Bug_1812_Regression/Bug_1812_Regession.mpc | 9 | ||||
-rwxr-xr-x | TAO/tests/Bug_1812_Regression/Test.idl | 7 | ||||
-rwxr-xr-x | TAO/tests/Bug_1812_Regression/test.cpp | 12 |
3 files changed, 28 insertions, 0 deletions
diff --git a/TAO/tests/Bug_1812_Regression/Bug_1812_Regession.mpc b/TAO/tests/Bug_1812_Regression/Bug_1812_Regession.mpc new file mode 100755 index 00000000000..679a47c31c8 --- /dev/null +++ b/TAO/tests/Bug_1812_Regression/Bug_1812_Regession.mpc @@ -0,0 +1,9 @@ +// -*- MPC -*- +// $Id$ + +project (*Test) : taoserver { + + Source_Files { + test.cpp + } +} diff --git a/TAO/tests/Bug_1812_Regression/Test.idl b/TAO/tests/Bug_1812_Regression/Test.idl new file mode 100755 index 00000000000..176f713989b --- /dev/null +++ b/TAO/tests/Bug_1812_Regression/Test.idl @@ -0,0 +1,7 @@ +// $Id$ + +#include <orb.idl> + +local interface foo { + void op (in CORBA::ValueFactory vf); +}; diff --git a/TAO/tests/Bug_1812_Regression/test.cpp b/TAO/tests/Bug_1812_Regression/test.cpp new file mode 100755 index 00000000000..d3b463ab1f1 --- /dev/null +++ b/TAO/tests/Bug_1812_Regression/test.cpp @@ -0,0 +1,12 @@ +// $Id$ + +#include "TestS.h" + +/** +* This test does not run - successful compile and link == successful test. +*/ +int +main (int, char *[]) +{ + return 0; +} |