mirror of
https://github.com/golang/go
synced 2024-11-08 13:46:18 -07:00
8566979972
- main3.c tests main.main is exported when compiled for GOOS=android. - wait longer for main2.c (it's slow on android/arm) - rearranged test.bash Fixes #10070. Change-Id: I6e5a98d1c5fae776afa54ecb5da633b59b269316 Reviewed-on: https://go-review.googlesource.com/9296 Reviewed-by: David Crawshaw <crawshaw@golang.org> Run-TryBot: Hyang-Ah Hana Kim <hyangah@gmail.com>
57 lines
1.2 KiB
C
57 lines
1.2 KiB
C
// 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 <errno.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
#include <unistd.h>
|
|
|
|
#define fd (10)
|
|
|
|
// Tests libgo2.so, which does not export any functions.
|
|
// Read a string from the file descriptor and print it.
|
|
int main(void) {
|
|
int i;
|
|
ssize_t n;
|
|
char buf[20];
|
|
struct timespec ts;
|
|
|
|
// The descriptor will be initialized in a thread, so we have to
|
|
// give a chance to get opened.
|
|
for (i = 0; i < 100; i++) {
|
|
n = read(fd, buf, sizeof buf);
|
|
if (n >= 0)
|
|
break;
|
|
if (errno != EBADF) {
|
|
fprintf(stderr, "BUG: read: %s\n", strerror(errno));
|
|
return 2;
|
|
}
|
|
|
|
// An EBADF error means that the shared library has not opened the
|
|
// descriptor yet.
|
|
ts.tv_sec = 0;
|
|
ts.tv_nsec = 1000000;
|
|
nanosleep(&ts, NULL);
|
|
}
|
|
|
|
if (n < 0) {
|
|
fprintf(stderr, "BUG: failed to read any data from pipe\n");
|
|
return 2;
|
|
}
|
|
|
|
if (n == 0) {
|
|
fprintf(stderr, "BUG: unexpected EOF\n");
|
|
return 2;
|
|
}
|
|
|
|
if (n == sizeof buf) {
|
|
n--;
|
|
}
|
|
buf[n] = '\0';
|
|
printf("%s\n", buf);
|
|
return 0;
|
|
}
|