2015-04-13 09:31:14 -06:00
|
|
|
// Copyright 2015 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
2015-12-26 10:51:59 -07:00
|
|
|
#include <string.h>
|
2015-04-13 09:31:14 -06:00
|
|
|
|
2015-05-06 23:06:19 -06:00
|
|
|
#include "p.h"
|
|
|
|
#include "libgo.h"
|
2015-04-13 09:31:14 -06:00
|
|
|
|
2016-03-24 15:50:21 -06:00
|
|
|
extern int install_handler();
|
|
|
|
extern int check_handler();
|
2015-12-26 10:51:59 -07:00
|
|
|
|
2015-04-13 09:31:14 -06:00
|
|
|
int main(void) {
|
2015-04-13 12:54:36 -06:00
|
|
|
int32_t res;
|
2015-04-13 09:31:14 -06:00
|
|
|
|
2016-03-24 15:50:21 -06:00
|
|
|
int r1 = install_handler();
|
|
|
|
if (r1!=0) {
|
|
|
|
return r1;
|
2015-12-26 10:51:59 -07:00
|
|
|
}
|
|
|
|
|
2015-04-13 17:31:39 -06:00
|
|
|
if (!DidInitRun()) {
|
|
|
|
fprintf(stderr, "ERROR: buildmode=c-archive init should run\n");
|
2015-04-13 09:31:14 -06:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2015-04-13 17:31:39 -06:00
|
|
|
if (DidMainRun()) {
|
|
|
|
fprintf(stderr, "ERROR: buildmode=c-archive should not run main\n");
|
2015-04-13 09:31:14 -06:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2016-03-24 15:50:21 -06:00
|
|
|
int r2 = check_handler();
|
|
|
|
if (r2!=0) {
|
|
|
|
return r2;
|
2015-12-26 10:51:59 -07:00
|
|
|
}
|
|
|
|
|
2015-04-13 09:31:14 -06:00
|
|
|
res = FromPkg();
|
2015-04-13 12:54:36 -06:00
|
|
|
if (res != 1024) {
|
|
|
|
fprintf(stderr, "ERROR: FromPkg()=%d, want 1024\n", res);
|
2015-04-13 09:31:14 -06:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2015-04-17 14:42:16 -06:00
|
|
|
CheckArgs();
|
|
|
|
|
2015-04-20 07:33:25 -06:00
|
|
|
fprintf(stderr, "PASS\n");
|
2015-04-13 09:31:14 -06:00
|
|
|
return 0;
|
|
|
|
}
|