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-05-06 23:06:19 -06:00
|
|
|
#include "p.h"
|
|
|
|
#include "libgo.h"
|
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
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|