summaryrefslogtreecommitdiff
path: root/ACE/bin/LabVIEW_RT/labview_test_controller/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/bin/LabVIEW_RT/labview_test_controller/test.cpp')
-rw-r--r--ACE/bin/LabVIEW_RT/labview_test_controller/test.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/ACE/bin/LabVIEW_RT/labview_test_controller/test.cpp b/ACE/bin/LabVIEW_RT/labview_test_controller/test.cpp
new file mode 100644
index 00000000000..0ba8c618571
--- /dev/null
+++ b/ACE/bin/LabVIEW_RT/labview_test_controller/test.cpp
@@ -0,0 +1,18 @@
+// $Id$
+
+#include <stdio.h>
+__declspec(dllimport) int test_entry(void);
+
+// This is plain Windows code, not ACE. Therefore we disable
+// the check for ACE_OS
+// FUZZ: disable check_for_lack_ACE_OS
+// FUZZ: disable check_for_improper_main_declaration
+
+int main (int, char *[])
+{
+ char line[80];
+ test_entry();
+ puts ("Ok, go... hit return to stop.");
+ gets (line);
+ return 0;
+}