blob: 076008b11d965d6eb3444a679e73b7d30676a7c5 [file] [log] [blame]
/*-------------------------------------------------------------------------
* drawElements Thread Library
* ---------------------------
*
* Copyright 2014 The Android Open Source Project
*
* 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.
*
*//*!
* \file
* \brief Thread library tests.
*//*--------------------------------------------------------------------*/
#include "deThreadTest.h"
#include <stdio.h>
int main (int argc, char* argv[])
{
DE_UNREF(argc && argv);
printf("Testing deThread... ");
deThread_selfTest();
printf("ok\n");
printf("Testing deMutex... ");
deMutex_selfTest();
printf("ok\n");
printf("Testing deSemaphore... ");
deSemaphore_selfTest();
printf("ok\n");
printf("Testing deAtomic... ");
deAtomic_selfTest();
printf("ok\n");
printf("All tests ok!\n");
return 0;
}