< prev index next >

jdk/test/javax/naming/module/basic.sh

Print this page




  61 $JAVAC -d mods/fruit `find $TESTSRC/src/fruit -name "*.java"`
  62 
  63 echo "\nPreparing the 'hello' module..."
  64 mkdir -p mods/hello
  65 $JAVAC -d mods/hello `find $TESTSRC/src/hello -name "*.java"`
  66 
  67 echo "\nPreparing the 'foo' module..."
  68 mkdir -p mods/foo
  69 $JAVAC -d mods/foo `find $TESTSRC/src/foo -name "*.java"`
  70 
  71 echo "\nPreparing the 'authz' module..."
  72 mkdir -p mods/authz
  73 $JAVAC -d mods/authz `find $TESTSRC/src/authz -name "*.java"`
  74 
  75 echo "\nPreparing the 'ldapv4' module..."
  76 mkdir -p mods/ldapv4
  77 $JAVAC -d mods/ldapv4 `find $TESTSRC/src/ldapv4 -name "*.java"`
  78 
  79 echo "\nPreparing the 'test' module..."
  80 mkdir -p mods/test
  81 $JAVAC -d mods -modulesourcepath $TESTSRC/src `find $TESTSRC/src/test -name "*.java"`
  82 
  83 
  84 echo "\nRunning with the 'java.desktop' module..."
  85 $JAVA -Dtest.src=${TESTSRC} -mp mods -m test/test.StoreObject ldap://localhost/dc=ie,dc=oracle,dc=com
  86 
  87 echo "\nRunning with the 'person' module..."
  88 $JAVA -Dtest.src=${TESTSRC} -mp mods -m test/test.StorePerson ldap://localhost/dc=ie,dc=oracle,dc=com
  89 
  90 echo "\nRunning with the 'fruit' module..."
  91 $JAVA -Dtest.src=${TESTSRC} -mp mods -m test/test.StoreFruit ldap://localhost/dc=ie,dc=oracle,dc=com
  92 
  93 echo "\nRunning with the 'hello' module..."
  94 $JAVA -Dtest.src=${TESTSRC} -mp mods -m test/test.StoreRemote ldap://localhost/dc=ie,dc=oracle,dc=com
  95 
  96 echo "\nRunning with the 'foo' module..."
  97 $JAVA -Dtest.src=${TESTSRC} -mp mods -m test/test.ConnectWithFoo ldap://localhost/dc=ie,dc=oracle,dc=com
  98 
  99 echo "\nRunning with the 'authz' module..."
 100 $JAVA -Dtest.src=${TESTSRC} -mp mods -m test/test.ConnectWithAuthzId ldap://localhost/dc=ie,dc=oracle,dc=com
 101 
 102 echo "\nRunning with the 'ldapv4' module..."
 103 $JAVA -Dtest.src=${TESTSRC} -mp mods -m test/test.ReadByUrl ldap://localhost/dc=ie,dc=oracle,dc=com
 104 


  61 $JAVAC -d mods/fruit `find $TESTSRC/src/fruit -name "*.java"`
  62 
  63 echo "\nPreparing the 'hello' module..."
  64 mkdir -p mods/hello
  65 $JAVAC -d mods/hello `find $TESTSRC/src/hello -name "*.java"`
  66 
  67 echo "\nPreparing the 'foo' module..."
  68 mkdir -p mods/foo
  69 $JAVAC -d mods/foo `find $TESTSRC/src/foo -name "*.java"`
  70 
  71 echo "\nPreparing the 'authz' module..."
  72 mkdir -p mods/authz
  73 $JAVAC -d mods/authz `find $TESTSRC/src/authz -name "*.java"`
  74 
  75 echo "\nPreparing the 'ldapv4' module..."
  76 mkdir -p mods/ldapv4
  77 $JAVAC -d mods/ldapv4 `find $TESTSRC/src/ldapv4 -name "*.java"`
  78 
  79 echo "\nPreparing the 'test' module..."
  80 mkdir -p mods/test
  81 $JAVAC -d mods --module-source-path $TESTSRC/src `find $TESTSRC/src/test -name "*.java"`
  82 
  83 
  84 echo "\nRunning with the 'java.desktop' module..."
  85 $JAVA -Dtest.src=${TESTSRC} -p mods -m test/test.StoreObject ldap://localhost/dc=ie,dc=oracle,dc=com
  86 
  87 echo "\nRunning with the 'person' module..."
  88 $JAVA -Dtest.src=${TESTSRC} -p mods -m test/test.StorePerson ldap://localhost/dc=ie,dc=oracle,dc=com
  89 
  90 echo "\nRunning with the 'fruit' module..."
  91 $JAVA -Dtest.src=${TESTSRC} -p mods -m test/test.StoreFruit ldap://localhost/dc=ie,dc=oracle,dc=com
  92 
  93 echo "\nRunning with the 'hello' module..."
  94 $JAVA -Dtest.src=${TESTSRC} -p mods -m test/test.StoreRemote ldap://localhost/dc=ie,dc=oracle,dc=com
  95 
  96 echo "\nRunning with the 'foo' module..."
  97 $JAVA -Dtest.src=${TESTSRC} -p mods -m test/test.ConnectWithFoo ldap://localhost/dc=ie,dc=oracle,dc=com
  98 
  99 echo "\nRunning with the 'authz' module..."
 100 $JAVA -Dtest.src=${TESTSRC} -p mods -m test/test.ConnectWithAuthzId ldap://localhost/dc=ie,dc=oracle,dc=com
 101 
 102 echo "\nRunning with the 'ldapv4' module..."
 103 $JAVA -Dtest.src=${TESTSRC} -p mods -m test/test.ReadByUrl ldap://localhost/dc=ie,dc=oracle,dc=com
 104 
< prev index next >