2015-04-16 11:46:58 -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-29 19:57:34 -06:00
|
|
|
|
2015-04-16 11:46:58 -06:00
|
|
|
// Tests libgo.so to export the following functions.
|
|
|
|
// int8_t DidInitRun();
|
|
|
|
// int8_t DidMainRun();
|
|
|
|
// int32_t FromPkg();
|
2017-02-27 00:56:57 -07:00
|
|
|
// uint32_t Divu(uint32_t, uint32_t);
|
2015-04-16 11:46:58 -06:00
|
|
|
int main(void) {
|
|
|
|
int8_t ran_init = DidInitRun();
|
|
|
|
if (!ran_init) {
|
|
|
|
fprintf(stderr, "ERROR: DidInitRun returned unexpected results: %d\n",
|
|
|
|
ran_init);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
int8_t ran_main = DidMainRun();
|
|
|
|
if (ran_main) {
|
|
|
|
fprintf(stderr, "ERROR: DidMainRun returned unexpected results: %d\n",
|
|
|
|
ran_main);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
int32_t from_pkg = FromPkg();
|
|
|
|
if (from_pkg != 1024) {
|
|
|
|
fprintf(stderr, "ERROR: FromPkg=%d, want %d\n", from_pkg, 1024);
|
|
|
|
return 1;
|
|
|
|
}
|
2017-02-27 00:56:57 -07:00
|
|
|
uint32_t divu = Divu(2264, 31);
|
|
|
|
if (divu != 73) {
|
|
|
|
fprintf(stderr, "ERROR: Divu(2264, 31)=%d, want %d\n", divu, 73);
|
|
|
|
return 1;
|
|
|
|
}
|
2015-04-16 11:46:58 -06:00
|
|
|
// test.bash looks for "PASS" to ensure this program has reached the end.
|
|
|
|
printf("PASS\n");
|
|
|
|
return 0;
|
|
|
|
}
|