WALA/com.ibm.wala.core.tests/src/com/ibm/wala/core/tests/demandpa/TestInfo.java

109 lines
4.5 KiB
Java

/*******************************************************************************
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html.
*
* This file is a derivative of code released by the University of
* California under the terms listed below.
*
* Refinement Analysis Tools is Copyright (c) 2007 The Regents of the
* University of California (Regents). Provided that this notice and
* the following two paragraphs are included in any distribution of
* Refinement Analysis Tools or its derivative work, Regents agrees
* not to assert any of Regents' copyright rights in Refinement
* Analysis Tools against recipient for recipient's reproduction,
* preparation of derivative works, public display, public
* performance, distribution or sublicensing of Refinement Analysis
* Tools and derivative works, in source code and object code form.
* This agreement not to assert does not confer, by implication,
* estoppel, or otherwise any license or rights in any intellectual
* property of Regents, including, but not limited to, any patents
* of Regents or Regents' employees.
*
* IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT,
* INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
* INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE
* AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE AND FURTHER DISCLAIMS ANY STATUTORY
* WARRANTY OF NON-INFRINGEMENT. THE SOFTWARE AND ACCOMPANYING
* DOCUMENTATION, IF ANY, PROVIDED HEREUNDER IS PROVIDED "AS
* IS". REGENTS HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT,
* UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
*/
package com.ibm.wala.core.tests.demandpa;
public class TestInfo {
public static final String SCOPE_FILE = "wala.testdata.txt";
// public static final String TEST1 = "Ldemandpa/Test1";
public static final String TEST_FIELDS = "Ldemandpa/TestFields";
public static final String TEST_FIELDS_HARDER = "Ldemandpa/TestFieldsHarder";
public static final String TEST_GETTER_SETTER = "Ldemandpa/TestGetterSetter";
public static final String TEST_ARRAYS = "Ldemandpa/TestArrays";
public static final String TEST_EXCEPTION = "Ldemandpa/TestException";
public static final String TEST_FACTORY = "Ldemandpa/TestFactory";
public static final String TEST_ARRAY_SET = "Ldemandpa/TestArraySet";
public static final String TEST_ARRAY_SET_ITER = "Ldemandpa/TestArraySetIter";
public static final String TEST_MULTI_DIM = "Ldemandpa/TestMultiDim";
public static final String TEST_GLOBAL = "Ldemandpa/TestGlobal";
public static final String TEST_ID = "Ldemandpa/TestId";
public static final String TEST_LOCALS = "Ldemandpa/TestLocals";
public static final String TEST_ONTHEFLY_SIMPLE = "Ldemandpa/TestOnTheFlySimple";
public static final String TEST_ONTHEFLY_CS = "Ldemandpa/TestOnTheFlyCS";
public static final String TEST_COND = "Ldemandpa/TestCond";
public static final String TEST_METHOD_RECURSION = "Ldemandpa/TestMethodRecursion";
public static final String TEST_HASH_SET = "Ldemandpa/TestHashSet";
public static final String TEST_HASHMAP_GET = "Ldemandpa/TestHashMapGet";
public static final String TEST_LINKED_LIST = "Ldemandpa/TestLinkedList";
public static final String TEST_LINKEDLIST_ITER = "Ldemandpa/TestLinkedListIter";
public static final String TEST_ARRAY_LIST = "Ldemandpa/TestArrayList";
public static final String TEST_HASHTABLE_ENUM = "Ldemandpa/TestHashtableEnum";
public static final String TEST_NASTY_PTRS = "Ldemandpa/TestNastyPtrs";
public static final String TEST_WITHIN_METHOD_CALL = "Ldemandpa/TestWithinMethodCall";
public static final String TEST_CLONE = "Ldemandpa/TestClone";
public static final String FLOWSTO_TEST_LOCALS = "Ldemandpa/FlowsToTestLocals";
public static final String FLOWSTO_TEST_ID = "Ldemandpa/FlowsToTestId";
public static final String FLOWSTO_TEST_FIELDS = "Ldemandpa/FlowsToTestFields";
public static final String FLOWSTO_TEST_FIELDS_HARDER = "Ldemandpa/FlowsToTestFieldsHarder";
public static final String FLOWSTO_TEST_ARRAYSET_ITER = "Ldemandpa/FlowsToTestArraySetIter";
public static final String FLOWSTO_TEST_HASHSET = "Ldemandpa/FlowsToTestHashSet";
}