1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/*
* SCCS: @(#)tc1.c 1.2 (96/08/15)
*
* (C) Copyright 1994 UniSoft Ltd., London, England
*
* All rights reserved. No part of this source code may be reproduced,
* stored in a retrieval system, or transmitted, in any form or by any
* means, electronic, mechanical, photocopying, recording or otherwise,
* except as stated in the end-user licence agreement, without the prior
* permission of the copyright owners.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/************************************************************************
SCCS: @(#)tc1.c 1.2 96/08/15 TETware release 3.3
NAME: tc1.c
PRODUCT: TETware
AUTHOR: Denis McConalogue, UniSoft Ltd.
DATE CREATED: October 1993
DESCRIPTION:
demo test suite master system test case 1
MODIFICATIONS:
************************************************************************/
#include <stdlib.h>
#include <tet_api.h>
void (*tet_startup)() = NULL, (*tet_cleanup)() = NULL;
void tp1();
struct tet_testlist tet_testlist[] = { {tp1,1}, {NULL,0} };
void tp1()
{
tet_infoline("This is the first test case (tc1)");
tet_result(TET_PASS);
}
|