Changeset 1469

Show
Ignore:
Timestamp:
02/08/07 12:00:02 (2 years ago)
Author:
dsugar
Message:

Updates based on relocation of stuff with the merge back into trunk

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/compilerbuild.xml

    r1466 r1469  
    1717        <property name="javacc_ext" value=".jj" /> 
    1818 
    19         <property name="svnlocation" value="http://oss.tresys.com/repos/slide/branches/frameworkchanges/src/com/tresys/slide" /> 
     19        <property name="svnlocation" value="http://oss.tresys.com/repos/slide/trunk/slide-plugin/src/com/tresys/slide" /> 
    2020 
    2121        <!-- dictionary source --> 
     
    4242        <property name="pkg_path" value="com/tresys/framework/compiler" /> 
    4343        <property name="pkg_name" value="com.tresys.framework.compiler" /> 
    44         <property name="src" value="src" /> 
     44        <property name="src" value="framework-plugin/src" /> 
    4545        <property name="build" value="build"/> 
    4646        <property name="testdir" value="test" /> 
     
    9494--> 
    9595                 
    96                 <!-- DJS - change URL to trunk when changes merged in for SLIDE --> 
    9796                <exec dir="${utilitybuild}" executable="svn"> 
    9897                        <arg line="export --force ${svnlocation}/utility/policyxmlparser" /> 
  • trunk/framework-plugin/src/com/tresys/framework/compiler/Compiler.java

    r1396 r1469  
    4949        static String ifFilename = null; 
    5050 
     51        static String libPath = System.getProperty("user.dir") + "/libselinuxjava/libselinuxjava.so"; 
     52         
    5153        // verbose output and warning default values 
    5254        static boolean debug = false; 
    53  
    54         static { 
    55                 System.load(System.getProperty("user.dir") 
    56                         + "/libselinuxjava/libselinuxjava.so"); 
    57         } 
    5855 
    5956        private static void getOpt(String[] args) { 
     
    128125                                if(x < args.length) { 
    129126                                        fcOutputFilename = args[x]; 
     127                                } else { 
     128                                        printUsage(); 
     129                                        System.exit(1); 
     130                                } 
     131                        } else if (args[x].equals("-lib")) { 
     132                                x++; 
     133                                if (x < args.length) { 
     134                                        libPath = args[x]; 
    130135                                } else { 
    131136                                        printUsage(); 
     
    226231                        .println("  -if <interface file> specify interface file for linkage to reference policy and exposing an external API (defaults to stdout if not specified)"); 
    227232                System.out.println("\nA dictionary file must be specified."); 
     233                System.out.println ("  -lib <libselinuxjava.so> specify path to libselinuxjava.so library to be loaded"); 
    228234 
    229235        } 
     
    249255                getOpt(args); 
    250256 
     257                // load libselinuxjava.so  
     258                if (debug) 
     259                        System.out.println ("path for libselinuxjava: " + libPath); 
     260                System.load(libPath); 
     261 
    251262                // set the debug & warn states appropriately 
    252263                com.tresys.framework.compiler.Utility.SetDebug(debug); 
  • trunk/test/test0001/test.sh

    r1310 r1469  
    77RESULT=0 
    88 
     9# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     10 
    911#run the compiler test 
    10 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     12java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    1113 
    1214#check compiler error result 
  • trunk/test/test0002/test.sh

    r1310 r1469  
    44 
    55RESULT=0 
     6# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
    67 
    78#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     9java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    910 
    1011#check compiler error result 
  • trunk/test/test0003/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0004/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0005/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0006/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0007/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0008/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0009/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0010/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0011/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0012/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0013/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0014/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0015/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0016/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0017/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0018/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0019/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0020/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0021/test.sh

    r1310 r1469  
    44 
    55RESULT=0 
     6# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
    67 
    78#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     9java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    910 
    1011#check compiler error result 
  • trunk/test/test0022/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0023/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0024/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0025/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0026/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0027/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0028/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0029/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0030/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0031/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0032/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0033/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0034/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0035/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0036/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0037/test.sh

    r1310 r1469  
    55RESULT=0 
    66 
     7# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
     8 
    79#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     10java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    911 
    1012#check compiler error result 
  • trunk/test/test0038/test.sh

    r1310 r1469  
    44 
    55RESULT=0 
     6# LIBSELINUX needs to be passed in as the full path to libselinuxjava.so 
    67 
    78#run the compiler test 
    8 java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if > $DIR/test.out 2> $DIR/test.err 
     9java -cp build com.tresys.framework.compiler.Compiler -fc $DIR/file_contexts -pc test/basepolicy/ -ds framework-plugin/resources/dictionary/dictionary.fdic  -p $DIR/test.fpol -s $DIR/test.fsys -po $DIR/test.te -sf $DIR/test.fc -if $DIR/test.if -lib $LIBSELINUX > $DIR/test.out 2> $DIR/test.err 
    910 
    1011#check compiler error result 
  • trunk/test/test0039/test.sh

    r1310 r1469  
    55RESULT=0 
    66