/****************************************************************************** * Copyright (c) 2009 - 2015 IBM Corporation. * All rights reserved. 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 * * Contributors: * IBM Corporation - initial API and implementation *****************************************************************************/ /** * */ package test.nemos; import java.util.Arrays; import java.util.HashSet; import java.util.Set; import com.ibm.wala.memsat.concurrent.MemoryModel; import com.ibm.wala.memsat.concurrent.memory.simple.ProcessorConsistency; import com.ibm.wala.types.MethodReference; /** * Executes nemos tests using the {@linkplain ProcessorConsistency} memory model. * @author etorlak */ public final class PCNemosTests extends NemosTests { public PCNemosTests() { super( new HashSet<String>( Arrays.asList("01", "02", "03", "04", "08", "09", "11", "12", "13", "14") ) ); } /** * {@inheritDoc} * @see test.ConcurrentTests#memoryModel(int, java.util.Set) */ @Override protected MemoryModel memoryModel(int maxSpeculations, Set<MethodReference> special) { return new ProcessorConsistency(); } }