mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-24 22:21:32 +00:00
Isolated emscripten in new lib
This commit is contained in:
23
lib/emscripten/emtests/test_stack_varargs.c
Normal file
23
lib/emscripten/emtests/test_stack_varargs.c
Normal file
@ -0,0 +1,23 @@
|
||||
/*
|
||||
* Copyright 2016 The Emscripten Authors. All rights reserved.
|
||||
* Emscripten is available under two separate licenses, the MIT license and the
|
||||
* University of Illinois/NCSA Open Source License. Both these licenses can be
|
||||
* found in the LICENSE file.
|
||||
*/
|
||||
|
||||
// We should not blow up the stack with numerous varargs
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
void func(int i) {
|
||||
printf(
|
||||
"%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,"
|
||||
"%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d\n",
|
||||
i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i,
|
||||
i, i, i, i, i, i, i, i, i, i, i, i, i, i);
|
||||
}
|
||||
int main() {
|
||||
for (int i = 0; i < 1024; i++) func(i);
|
||||
printf("ok!\n");
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user