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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
/*
* SCCS: @(#)tc3.c 1.3 (96/10/03)
*
* (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
#ifndef lint
static char sccsid[] = "@(#)tc3.c 1.3 (96/10/03) TET3 release 3.3";
#endif
/************************************************************************
SCCS: @(#)tc3.c 1.3 96/10/03 TETware release 3.3
NAME: tc3.c
PRODUCT: TETware
AUTHOR: Denis McConalogue, UniSoft Ltd.
DATE CREATED: October 1993
DESCRIPTION:
demo test suite master system test case 3
MODIFICATIONS:
Geoff Clare, UniSoft Ltd., Oct 1996
Use tet_remsync() instead of (deprecated) tet_sync().
Added tp2.
************************************************************************/
#include <stdlib.h>
#include <stdio.h>
#include <tet_api.h>
#define TIMEOUT 10 /* sync time out */
int sys1[] = { 1 }; /* system IDs to sync with */
static void error(err, rptstr)
int err; /* tet_errno value, or zero if N/A */
char *rptstr; /* failure to report */
{
char *errstr, *colonstr = ": ";
char errbuf[20];
if (err == 0)
errstr = colonstr = "";
else if (err > 0 && err < tet_nerr)
errstr = tet_errlist[err];
else {
(void) sprintf(errbuf, "unknown tet_errno value %d", tet_errno);
errstr = errbuf;
}
if (tet_printf("%s%s%s", rptstr, colonstr, errstr) < 0) {
(void) fprintf(stderr, "tet_printf() failed: tet_errno %d\n",
tet_errno);
exit(EXIT_FAILURE);
}
}
static void tp1()
{
tet_infoline("This is tp1 in the third test case (tc3, master)");
(void) tet_printf("sync with slave (sysid: %d)", *sys1);
if (tet_remsync(101L, sys1, 1, TIMEOUT, TET_SV_YES,
(struct tet_synmsg *)0) != 0) {
error(tet_errno, "tet_remsync() failed on master");
tet_result(TET_UNRESOLVED);
}
else
tet_result(TET_PASS);
}
static void tp2()
{
int rescode = TET_UNRESOLVED;
struct tet_synmsg msg;
static char tdata[] = "test data";
tet_infoline("This is tp2 in the third test case (tc3, master)");
(void) tet_printf("send message \"%s\" to slave (sysid: %d)",
tdata, *sys1);
msg.tsm_flags = TET_SMSNDMSG;
msg.tsm_dlen = sizeof(tdata);
msg.tsm_data = tdata;
if (tet_remsync(201L, sys1, 1, TIMEOUT, TET_SV_YES, &msg) != 0)
error(tet_errno, "tet_remsync() failed on master");
else if ((msg.tsm_flags & TET_SMSNDMSG) == 0)
error(0, "tet_remsync() cleared TET_SMSNDMSG flag on master");
else if (msg.tsm_flags & TET_SMTRUNC)
error(0, "tet_remsync() set TET_SMTRUNC flag on master");
else
rescode = TET_PASS;
tet_result(rescode);
}
void (*tet_startup)() = NULL, (*tet_cleanup)() = NULL;
struct tet_testlist tet_testlist[] = { {tp1,1}, {tp2,2}, {NULL,0} };
|