~ubuntu-branches/ubuntu/wily/eso-midas/wily-proposed

« back to all changes in this revision

Viewing changes to test/os/osetest.c

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2014-04-22 14:44:58 UTC
  • Revision ID: package-import@ubuntu.com-20140422144458-okiwi1assxkkiz39
Tags: upstream-13.09pl1.2+dfsg
ImportĀ upstreamĀ versionĀ 13.09pl1.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* @(#)osetest.c        19.1 (ES0-DMD) 02/25/03 14:33:04 */
 
2
/*===========================================================================
 
3
  Copyright (C) 1995 European Southern Observatory (ESO)
 
4
 
 
5
  This program is free software; you can redistribute it and/or 
 
6
  modify it under the terms of the GNU General Public License as 
 
7
  published by the Free Software Foundation; either version 2 of 
 
8
  the License, or (at your option) any later version.
 
9
 
 
10
  This program is distributed in the hope that it will be useful,
 
11
  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
  GNU General Public License for more details.
 
14
 
 
15
  You should have received a copy of the GNU General Public 
 
16
  License along with this program; if not, write to the Free 
 
17
  Software Foundation, Inc., 675 Massachusetss Ave, Cambridge, 
 
18
  MA 02139, USA.
 
19
 
 
20
  Corresponding concerning ESO-MIDAS should be addressed as follows:
 
21
        Internet e-mail: midas@eso.org
 
22
        Postal address: European Southern Observatory
 
23
                        Data Management Division 
 
24
                        Karl-Schwarzschild-Strasse 2
 
25
                        D 85748 Garching bei Muenchen 
 
26
                        GERMANY
 
27
===========================================================================*/
 
28
 
 
29
#include <stdio.h>
 
30
#include <osparms.h>
 
31
 
 
32
#define errexit(x) { fprintf(stderr,x); ospexit(1); }
 
33
#define errmess(x) fprintf(stderr,x)
 
34
 
 
35
main ()
 
36
{
 
37
        int oseprep(),oseset(),oseread(),oseclear(),osewait();
 
38
        int ospcreate();
 
39
        int ret;
 
40
 
 
41
/*      printf("A\n"); */
 
42
        if(oseprep()== -1) {
 
43
                errmess("Oseprep BAD\n");
 
44
                fprintf(stderr,"oserror:%x\n",oserror);
 
45
        }
 
46
/*      printf("B\n"); */
 
47
        
 
48
        if((oseset(0))== -1) {
 
49
                errmess("Oseset BAD\n");
 
50
                fprintf(stderr,"ret:%x\n",oserror);
 
51
        }
 
52
/*      printf("C\n"); */
 
53
        if(oseread(0)!= 1 || oseread(1))
 
54
                errmess("Oseread BAD\n");
 
55
/*      printf("D\n"); */
 
56
        /* CGS000: Ospcreate modified in the current version */
 
57
        /* if (ospcreate("osetest1","proc1",1,-1,-1)== -1) */
 
58
        if (ospcreate("osetest1","osetest1"-1,-1)== -1)
 
59
                errexit("Ospcreate BAD on osetest1\n");
 
60
        sleep(2);
 
61
        if(oseread(0)!= 0)
 
62
                errexit("Child Oseset was BAD\n");
 
63
/*      printf("E\n"); */
 
64
        if(osewait(0)) 
 
65
                errmess("Osewait BAD\n");
 
66
/*      printf("F\n"); */
 
67
}