NameDateSize

..14-Dec-20173

ClosedStreams.javaH A D14-Dec-20171.7 KiB

CloseTest.javaH A D14-Dec-20173.5 KiB

EchoService.javaH A D14-Dec-20176.4 KiB

EchoTest.javaH A D14-Dec-20175.8 KiB

InheritedChannelTest.javaH A D14-Dec-20175.1 KiB

java.policy.failH A D14-Dec-2017370

java.policy.passH A D14-Dec-2017376

Launcher.cH A D14-Dec-20174.2 KiB

Launcher.javaH A D14-Dec-20176.1 KiB

lib/H14-Dec-20175

MakefileH A D14-Dec-20171.8 KiB

NullTest.javaH A D14-Dec-20171.9 KiB

READMEH A D14-Dec-20171 KiB

StateTest.javaH A D14-Dec-20176.4 KiB

StateTestService.javaH A D14-Dec-20173.6 KiB

Util.javaH A D14-Dec-20173.3 KiB

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