• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..30-Oct-2021-

lib/H30-Oct-2021-

CloseTest.javaH A D30-Oct-20213.4 KiB9639

ClosedStreams.javaH A D30-Oct-20211.7 KiB4911

EchoService.javaH A D30-Oct-20216.2 KiB201108

EchoTest.javaH A D30-Oct-20215.7 KiB181102

Launcher.cH A D30-Oct-20214.3 KiB172110

Launcher.javaH A D30-Oct-20216 KiB15486

MakefileH A D30-Oct-20211.8 KiB8356

NullTest.javaH A D30-Oct-20211.9 KiB5417

READMEH A D30-Oct-20211 KiB3621

StateTest.javaH A D30-Oct-20216.2 KiB18896

StateTestService.javaH A D30-Oct-20213.5 KiB11259

Util.javaH A D30-Oct-20213.8 KiB11759

java.policy.failH A D30-Oct-2021370 1211

java.policy.passH A D30-Oct-2021376 1211

run_tests.shH A D30-Oct-20213.3 KiB13973

README

1
2The unit tests in this directory depend on a native launcher library
3(libLauncher.so). This native library is built off-line and the
4resulting libLauncher.so for each processor/OS combination is checked
5into the workspace. The reason for this is because the test environment
6may not have the required compilers/build environment.
7
8In order to rebuild libLauncher.so the following is required :-
9
101. Check-out each of the shared libraries (sccs edit)
11
122. Edit Launcher.c with the appropriate changes
13
143. Execute the make script (gnumake all) on each processor/OS so
15that the appropriate lib/<platform>/libLauncher.so is built.
16
174. Test the changes
18
195. Check-in each of the shared library (sccs delget)
20
21
22For step 4 (re-building libLauncher.so) the following environment is required:
23
24(a) JAVA_HOME needs to be set to J2SE directory, eg:-
25	export JAVA_HOME=/usr/local/java/jdk1.5/solaris-sparc
26
27(b) For Solaris the SOS8 'cc' needs to be on the PATH, check using:
28	# cc -V
29	cc: Sun C 5.5 2003/03/12
30
31(c) Execute the make script :-
32	Solaris:	gnumake all
33	Linux:		gmake all
34
35
36