*not part of the build*
fix for 80938 a = avm@sparc.spb.su ovk@sparc.spb.su sva@sparc.spb.su Tests for blackConnect git-svn-id: svn://10.0.0.236/trunk@95860 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
59
mozilla/java/xpcom/test/basic/params/X2JIN/java/Makefile.in
Normal file
59
mozilla/java/xpcom/test/basic/params/X2JIN/java/Makefile.in
Normal file
@@ -0,0 +1,59 @@
|
||||
#!gmake
|
||||
#
|
||||
# The contents of this file are subject to the Netscape Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/NPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is mozilla.org code.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape
|
||||
# Communications Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1998 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Client QA Team, St. Petersburg, Russia
|
||||
#
|
||||
|
||||
DEPTH=../../../../../../..
|
||||
topsrcdir = $(DEPTH)
|
||||
srcdir = .
|
||||
VPATH = .
|
||||
XPIDLSRCS = iX2JINServerTestComponent.idl
|
||||
XPIDL_MODULE = X2JINServerTestComponent
|
||||
JAVA_OR_NSJVM = 1
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
|
||||
JAVA_SRC=X2JINServerTestComponent.java
|
||||
|
||||
JAVAI_SRC=iX2JINServerTestComponent.java
|
||||
|
||||
X2JINServerTestComponent.jar.comp: manifest X2JINServerTestComponent.class
|
||||
$(JDKHOME)/bin/jar cvfm X2JINServerTestComponent.jar.comp manifest *.class
|
||||
|
||||
X2JINServerTestComponent.class:
|
||||
$(JDKHOME)/bin/javac -classpath $(DEPTH)/dist/classes $(JAVA_SRC)
|
||||
|
||||
javai::
|
||||
$(JDKHOME)/bin/javac -classpath $(DEPTH)/dist/classes -d $(DEPTH)/dist/classes $(JAVAI_SRC)
|
||||
|
||||
|
||||
install-component: javai X2JINServerTestComponent.jar.comp X2JINServerTestComponent.jar.info
|
||||
cp -f X2JINServerTestComponent.jar* $(DIST)/bin/components
|
||||
|
||||
clobber::
|
||||
rm -f *.class *.jar.comp
|
||||
rm -f $(DIST)/bin/components/X2JINServerTestComponent.jar.*
|
||||
clobber_all:: clobber
|
||||
install:: install-component
|
||||
@@ -0,0 +1,2 @@
|
||||
9f3e8810-9092-11d4-9d38-00a024a8bb88
|
||||
@mozilla/blackwood/blackconnect/test/params/X2JINServer;1
|
||||
@@ -0,0 +1,310 @@
|
||||
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
|
||||
The contents of this file are subject to the Mozilla Public
|
||||
License Version 1.1 (the "License"); you may not use this file
|
||||
except in compliance with the License. You may obtain a copy of
|
||||
the License at http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS
|
||||
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
implied. See the License for the specific language governing
|
||||
rights and limitations under the License.
|
||||
|
||||
The Original Code is mozilla.org code.
|
||||
|
||||
The Initial Developer of the Original Code is Sun Microsystems,
|
||||
Inc. Portions created by Sun are
|
||||
Copyright (C) 1999 Sun Microsystems, Inc. All
|
||||
Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Client QA Team, St. Petersburg, Russia
|
||||
*/
|
||||
|
||||
import org.mozilla.xpcom.*;
|
||||
import java.lang.*;
|
||||
import java.lang.reflect.*;
|
||||
import java.io.*;
|
||||
|
||||
public class X2JINServerTestComponent implements iX2JINServerTestComponent {
|
||||
|
||||
private static String testLocation=null;
|
||||
private static String logLocation=null;
|
||||
private String S="";
|
||||
|
||||
public X2JINServerTestComponent() {
|
||||
System.out.println("--[java] X2JINServerTestComponent constructor");
|
||||
}
|
||||
|
||||
public Object queryInterface(IID iid) {
|
||||
System.out.println("--[java]X2JINServerTestComponent::queryInterface iid="+iid);
|
||||
if (iid.equals(nsISupports.IID)
|
||||
|| iid.equals(iX2JINServerTestComponent.IID)) {
|
||||
return this;
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* This method sets locations, which are passed from C++ client
|
||||
* side.
|
||||
* First parameter - test location,
|
||||
* Second parameter - log location.
|
||||
*/
|
||||
public void setTestLocation(String location, String location2) {
|
||||
testLocation=location;
|
||||
logLocation=location2;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method writes server side test result to a log file.
|
||||
* These test results were accumulated in apropriated test
|
||||
* methods. This method takes tested type as parameter.
|
||||
*/
|
||||
public void flush(String name) {
|
||||
try{
|
||||
DataOutputStream f=new DataOutputStream(new FileOutputStream(logLocation+"/x2j.in.server."+name));
|
||||
f.writeBytes(S);
|
||||
} catch(Exception e) {
|
||||
System.out.println("Exception during writing the file");
|
||||
}
|
||||
S="";
|
||||
}
|
||||
|
||||
/****************************************/
|
||||
/* TEST METHODS */
|
||||
/****************************************/
|
||||
|
||||
/**
|
||||
* This method accumulates short values, which are passed from C++
|
||||
* client side.
|
||||
*/
|
||||
public void testShort(short i) {
|
||||
S=S+new Short(i).toString()+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method accumulates int values, which are passed from C++
|
||||
* client side.
|
||||
*/
|
||||
public void testLong(int i) {
|
||||
S=S+new Integer(i).toString()+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method accumulates long values, which are passed from C++
|
||||
* client side.
|
||||
*/
|
||||
public void testLonglong(long i) {
|
||||
S=S+new Long(i).toString()+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method accumulates byte values, which are passed from C++
|
||||
* client side.
|
||||
*/
|
||||
public void testByte(byte i) {
|
||||
S=S+new Byte(i).toString()+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method accumulates short values (unsigned short on C++
|
||||
* side), which are passed from C++ client side.
|
||||
*/
|
||||
public void testUShort(short i) {
|
||||
S=S+new Short(i).toString()+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method accumulates int values (unsigned int on C++
|
||||
* side), which are passed from C++ client side.
|
||||
*/
|
||||
public void testULong(int i) {
|
||||
S=S+new Integer(i).toString()+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method accumulates long values (unsigned long on C++
|
||||
* side), which are passed from C++ client side.
|
||||
*/
|
||||
public void testULonglong(long i) {
|
||||
S=S+new Long(i).toString()+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method accumulates float values, which are passed from C++
|
||||
* client side.
|
||||
*/
|
||||
public void testFloat(float i) {
|
||||
S=S+new Float(i).toString()+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method accumulates double values, which are passed from
|
||||
* C++ client side.
|
||||
*/
|
||||
public void testDouble(double i) {
|
||||
S=S+new Double(i).toString()+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method accumulates boolean values, which are passed from
|
||||
* C++ client side.
|
||||
*/
|
||||
public void testBoolean(boolean i) {
|
||||
S=S+new Boolean(i).toString()+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method accumulates char values, which are passed from
|
||||
* C++ client side.
|
||||
*/
|
||||
public void testChar(char i) {
|
||||
S=S+new Character(i).toString()+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method accumulates char values (wchar on C++ side),
|
||||
* which are passed from C++ client side.
|
||||
*/
|
||||
public void testWChar(char i) {
|
||||
S=S+new Character(i).toString()+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method accumulates String values, which are passed from
|
||||
* C++ client side.
|
||||
*/
|
||||
public void testString(String i) {
|
||||
S=S+i+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method accumulates String values (wstring on C++ side),
|
||||
* which are passed from C++ client side.
|
||||
*/
|
||||
public void testWString(String i) {
|
||||
S=S+i+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method accumulates String array values, which are passed
|
||||
* from C++ client side.
|
||||
* First parameter - number of an array elements.
|
||||
*/
|
||||
public void testStringArray(int count, String[] stringArray) {
|
||||
for(int j=0;j<count;j++)
|
||||
S=S+stringArray[j]+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method accumulates int array values, which are passed
|
||||
* from C++ client side.
|
||||
* First parameter - number of an array elements.
|
||||
*/
|
||||
public void testLongArray(int count, int[] intArray) {
|
||||
for(int j=0;j<count;j++)
|
||||
S=S+new Integer(intArray[j]).toString()+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method accumulates char array values, which are passed
|
||||
* from C++ client side.
|
||||
* First parameter - number of an array elements.
|
||||
*/
|
||||
public void testCharArray(int count, char[] charArray) {
|
||||
for(int j=0;j<count;j++)
|
||||
S=S+new Character(charArray[j]).toString()+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method accumulates misc values, which are passed from
|
||||
* C++ client side.
|
||||
*/
|
||||
public void testMixed(boolean _bool, char _char, byte _byte,
|
||||
short _short, short _ushort, int _int,
|
||||
int _uint, long _long, long _ulong,
|
||||
float _float, double _double, String _string,
|
||||
int count, int[] _intArray) {
|
||||
S=S+new Boolean(_bool).toString()+"\n";
|
||||
S=S+new Character(_char).toString()+"\n";
|
||||
S=S+new Byte(_byte).toString()+"\n";
|
||||
S=S+new Short(_short).toString()+"\n";
|
||||
S=S+new Short(_ushort).toString()+"\n";
|
||||
S=S+new Integer(_int).toString()+"\n";
|
||||
S=S+new Integer(_uint).toString()+"\n";
|
||||
S=S+new Long(_long).toString()+"\n";
|
||||
S=S+new Long(_ulong).toString()+"\n";
|
||||
S=S+new Float(_float).toString()+"\n";
|
||||
S=S+new Double(_double).toString()+"\n";
|
||||
S=S+_string+"\n";
|
||||
for(int j=0;j<count;j++)
|
||||
S=S+new Integer(_intArray[j]).toString()+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method try to invoke testObj() method,
|
||||
* using iX2JINServerTestComponent value, which is passed from
|
||||
* C++ client side.
|
||||
*/
|
||||
public void testObject(iX2JINServerTestComponent obj) {
|
||||
try{
|
||||
obj.testObj();
|
||||
} catch(Exception e) {
|
||||
System.out.println("EXC in TESTOBJ");
|
||||
S=S+"Exception in TestObject: "+e+"\n";
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* This method sets correct result string for testObject(...)
|
||||
* method.
|
||||
*/
|
||||
public void testObj() {
|
||||
System.out.println("TESTOBJ");
|
||||
S=S+"!!!Right string!!!"+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method gets IID value, which is passed from
|
||||
* C++ client side.
|
||||
*/
|
||||
public void testIID(IID iid) {
|
||||
S=S+iid.toString()+"\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* This method gets CID value, which is passed from
|
||||
* C++ client side.
|
||||
*/
|
||||
public void testCID(CID cid) {
|
||||
S=S+cid.toString()+"\n";
|
||||
//CID c=new CID("1ddc5b10-9852-11d4-aa22-00a024a8bbac");
|
||||
}
|
||||
|
||||
/****************************************/
|
||||
/* /TEST METHODS */
|
||||
/****************************************/
|
||||
|
||||
|
||||
|
||||
static {
|
||||
try {
|
||||
Class nsISupportsStringClass = Class.forName("org.mozilla.xpcom.nsISupportsString");
|
||||
Class iX2JINServerTestComponentClass = Class.forName("org.mozilla.xpcom.iX2JINServerTestComponent");
|
||||
Class nsIComponentManagerClass = Class.forName("org.mozilla.xpcom.nsIComponentManager");
|
||||
Class nsIFactoryClass = Class.forName("org.mozilla.xpcom.nsIFactory");
|
||||
Class nsIEnumeratorClass = Class.forName("org.mozilla.xpcom.nsIEnumerator");
|
||||
|
||||
InterfaceRegistry.register(nsIComponentManagerClass);
|
||||
InterfaceRegistry.register(nsIFactoryClass);
|
||||
InterfaceRegistry.register(nsIEnumeratorClass);
|
||||
InterfaceRegistry.register(iX2JINServerTestComponentClass);
|
||||
InterfaceRegistry.register(nsISupportsStringClass);
|
||||
} catch (Exception e) {
|
||||
System.out.println(e);
|
||||
}
|
||||
}
|
||||
|
||||
};
|
||||
@@ -0,0 +1,62 @@
|
||||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
|
||||
The contents of this file are subject to the Mozilla Public
|
||||
License Version 1.1 (the "License"); you may not use this file
|
||||
except in compliance with the License. You may obtain a copy of
|
||||
the License at http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS
|
||||
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
implied. See the License for the specific language governing
|
||||
rights and limitations under the License.
|
||||
|
||||
The Original Code is mozilla.org code.
|
||||
|
||||
The Initial Developer of the Original Code is Sun Microsystems,
|
||||
Inc. Portions created by Sun are
|
||||
Copyright (C) 1999 Sun Microsystems, Inc. All
|
||||
Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Client QA Team, St. Petersburg, Russia
|
||||
*/
|
||||
|
||||
#include "nsISupports.idl"
|
||||
|
||||
[scriptable, uuid(9f3e8810-9092-11d4-9d38-00a024a8bb88)]
|
||||
interface iX2JINServerTestComponent : nsISupports {
|
||||
void setTestLocation(in string testLocation, in string logLocation);
|
||||
void flush(in string name);
|
||||
void testShort(in short i);
|
||||
void testLong(in long i);
|
||||
void testLonglong(in long long i);
|
||||
void testByte(in octet i);
|
||||
void testUShort(in unsigned short i);
|
||||
void testULong(in unsigned long i);
|
||||
void testULonglong(in unsigned long long i);
|
||||
void testFloat(in float i);
|
||||
void testDouble(in double i);
|
||||
void testBoolean(in boolean i);
|
||||
void testChar(in char i);
|
||||
void testWChar(in wchar i);
|
||||
void TestString(in string i);
|
||||
void TestWString(in wstring i);
|
||||
void testStringArray(in unsigned long count,
|
||||
[array, size_is(count)] in string stringArray);
|
||||
void testLongArray(in unsigned long count,
|
||||
[array, size_is(count)] in long intArray);
|
||||
void testCharArray(in unsigned long count,
|
||||
[array, size_is(count)] in char charArray);
|
||||
void testMixed(in boolean bBool, in char cChar, in octet nByte,
|
||||
in short nShort, in unsigned short nUShort,
|
||||
in long nLong, in unsigned long nULong,
|
||||
in long long nHyper, in unsigned long long nUHyper,
|
||||
in float fFloat, in double fDouble,
|
||||
in string aString,
|
||||
in unsigned long count,
|
||||
[array, size_is(count)] in long intArray);
|
||||
void testObject(in iX2JINServerTestComponent obj);
|
||||
void testObj();
|
||||
void testIID(in nsIIDRef iid);
|
||||
void testCID(in nsCIDRef cid);
|
||||
};
|
||||
@@ -0,0 +1,99 @@
|
||||
/*
|
||||
* ************* DO NOT EDIT THIS FILE ***********
|
||||
*
|
||||
* This file was automatically generated from iX2JINServerTestComponent.idl.
|
||||
*/
|
||||
|
||||
|
||||
package org.mozilla.xpcom;
|
||||
|
||||
|
||||
/**
|
||||
* Interface iX2JINServerTestComponent
|
||||
*
|
||||
* IID: 0x9f3e8810-9092-11d4-9d38-00a024a8bb88
|
||||
*/
|
||||
|
||||
public interface iX2JINServerTestComponent extends nsISupports
|
||||
{
|
||||
public static final IID IID =
|
||||
new IID("9f3e8810-9092-11d4-9d38-00a024a8bb88");
|
||||
|
||||
|
||||
/* void setTestLocation (in string testLocation, in string logLocation); */
|
||||
public void setTestLocation(String testLocation, String logLocation);
|
||||
|
||||
/* void flush (in string name); */
|
||||
public void flush(String name);
|
||||
|
||||
/* void testShort (in short i); */
|
||||
public void testShort(short i);
|
||||
|
||||
/* void testLong (in long i); */
|
||||
public void testLong(int i);
|
||||
|
||||
/* void testLonglong (in long long i); */
|
||||
public void testLonglong(long i);
|
||||
|
||||
/* void testByte (in octet i); */
|
||||
public void testByte(byte i);
|
||||
|
||||
/* void testUShort (in unsigned short i); */
|
||||
public void testUShort(short i);
|
||||
|
||||
/* void testULong (in unsigned long i); */
|
||||
public void testULong(int i);
|
||||
|
||||
/* void testULonglong (in unsigned long long i); */
|
||||
public void testULonglong(long i);
|
||||
|
||||
/* void testFloat (in float i); */
|
||||
public void testFloat(float i);
|
||||
|
||||
/* void testDouble (in double i); */
|
||||
public void testDouble(double i);
|
||||
|
||||
/* void testBoolean (in boolean i); */
|
||||
public void testBoolean(boolean i);
|
||||
|
||||
/* void testChar (in char i); */
|
||||
public void testChar(char i);
|
||||
|
||||
/* void testWChar (in wchar i); */
|
||||
public void testWChar(char i);
|
||||
|
||||
/* void TestString (in string i); */
|
||||
public void testString(String i);
|
||||
|
||||
/* void TestWString (in wstring i); */
|
||||
public void testWString(String i);
|
||||
|
||||
/* void testStringArray (in unsigned long count, [array, size_is (count)] in string stringArray); */
|
||||
public void testStringArray(int count, String[] stringArray);
|
||||
|
||||
/* void testLongArray (in unsigned long count, [array, size_is (count)] in long intArray); */
|
||||
public void testLongArray(int count, int[] intArray);
|
||||
|
||||
/* void testCharArray (in unsigned long count, [array, size_is (count)] in char charArray); */
|
||||
public void testCharArray(int count, char[] charArray);
|
||||
|
||||
/* void testMixed (in boolean bBool, in char cChar, in octet nByte, in short nShort, in unsigned short nUShort, in long nLong, in unsigned long nULong, in long long nHyper, in unsigned long long nUHyper, in float fFloat, in double fDouble, in string aString, in unsigned long count, [array, size_is (count)] in long intArray); */
|
||||
public void testMixed(boolean bBool, char cChar, byte nByte, short nShort, short nUShort, int nLong, int nULong, long nHyper, long nUHyper, float fFloat, double fDouble, String aString, int count, int[] intArray);
|
||||
|
||||
/* void testObject (in iX2JINServerTestComponent obj); */
|
||||
public void testObject(iX2JINServerTestComponent obj);
|
||||
|
||||
/* void testObj (); */
|
||||
public void testObj();
|
||||
|
||||
/* void testIID (in nsIIDRef iid); */
|
||||
public void testIID(IID iid);
|
||||
|
||||
/* void testCID (in nsCIDRef cid); */
|
||||
public void testCID(CID cid);
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
* end
|
||||
*/
|
||||
57
mozilla/java/xpcom/test/basic/params/X2JIN/java/makefile.win
Normal file
57
mozilla/java/xpcom/test/basic/params/X2JIN/java/makefile.win
Normal file
@@ -0,0 +1,57 @@
|
||||
#!nmake
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is mozilla.org code.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Sun Microsystems,
|
||||
# Inc. Portions created by Sun are
|
||||
# Copyright (C) 1999 Sun Microsystems, Inc. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Client QA Team, St. Petersburg, Russia
|
||||
#
|
||||
|
||||
DEPTH = ..\..\..\..\..\..\..
|
||||
topsrcdir = ..\..\..\..\..\..\..
|
||||
srcdir = .
|
||||
VPATH = .
|
||||
|
||||
MAKE_OBJ_TYPE=DLL
|
||||
MODULE=X2JINServerTestComponent
|
||||
COMPONENT=1
|
||||
|
||||
|
||||
XPIDLSRCS = \
|
||||
.\iX2JINServerTestComponent.idl \
|
||||
$(NULL)
|
||||
|
||||
include <$(DEPTH)\config\rules.mak>
|
||||
|
||||
X2JINServerTestComponent.jar.comp: manifest iX2JINServerTestComponent.class X2JINServerTestComponent.class
|
||||
$(JDKHOME)\bin\jar cvfm X2JINServerTestComponent.jar.comp manifest *.class
|
||||
|
||||
.SUFFIXES: .java .class
|
||||
|
||||
.java.class:
|
||||
$(JDKHOME)\bin\javac -classpath $(CLASSPATH) -d $(DEPTH)\dist\classes iX2JINServerTestComponent.java
|
||||
$(JDKHOME)\bin\javac -classpath $(CLASSPATH) X2JINServerTestComponent.java
|
||||
|
||||
install-component: X2JINServerTestComponent.jar.comp X2JINServerTestComponent.jar.info $(DLL)
|
||||
copy X2JINServerTestComponent.jar* $(DIST)\bin\components
|
||||
|
||||
clobber::
|
||||
-del /f *.class *.jar.comp
|
||||
-del /f $(DIST)\bin\components\X2JINServerTestComponent.jar.*
|
||||
-del /f $(DIST)\..\classes\org\mozilla\xpcom\iX2JINServerTestComponent.*
|
||||
clobber_all:: clobber
|
||||
install:: install-component
|
||||
1
mozilla/java/xpcom/test/basic/params/X2JIN/java/manifest
Normal file
1
mozilla/java/xpcom/test/basic/params/X2JIN/java/manifest
Normal file
@@ -0,0 +1 @@
|
||||
Component-Class: X2JINServerTestComponent
|
||||
Reference in New Issue
Block a user