55 lines
1.4 KiB
C
55 lines
1.4 KiB
C
/*
|
|
* Copyright 2010 Stefan Lankes, Chair for Operating Systems,
|
|
* RWTH Aachen University
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
* This file is part of MetalSVM.
|
|
*/
|
|
|
|
#ifndef CONFIG_TEST_H
|
|
#define CONFIG_TEST_H
|
|
|
|
#include <metalsvm/stddef.h>
|
|
|
|
// define test applications, which will be started
|
|
#ifdef CONFIG_ROCKCREEK
|
|
//#define START_SVM_TEST
|
|
//#define START_SVM_BENCH
|
|
//#define START_MAIL_PING
|
|
//#define START_MAIL_NOISE
|
|
//#define START_KERNEL_LAPLACE
|
|
//#define START_KERNEL_JACOBI
|
|
//#define START_MMNIF_TEST
|
|
#endif
|
|
#ifdef CONFIG_LWIP
|
|
//#define START_ECHO
|
|
#ifndef CONFIG_TICKLESS
|
|
//#define START_NETIO
|
|
#endif
|
|
#endif
|
|
//#define START_CONSUMER_PRODUCER
|
|
//#define START_FOO
|
|
//#define START_JOIN_TEST
|
|
//#define START_PI
|
|
//#define START_MEASURE_CTX_SWITCH
|
|
//#define START_HELLO
|
|
//#define START_TESTS
|
|
//#define START_JACOBI
|
|
|
|
//#define START_CHIEFTEST
|
|
|
|
// does our demos require GFX support?
|
|
//#define CONFIG_GFX
|
|
|
|
#endif
|