mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-22 21:21:33 +00:00
fix emscripten dependencies by making separate test crate
This commit is contained in:
@ -0,0 +1,16 @@
|
||||
// Copyright 2017 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.
|
||||
|
||||
#include <emscripten.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
// Test that on main browser thread, MAIN_THREAD_ASYNC_EM_ASM() will get
|
||||
// synchronously executed.
|
||||
printf("Before MAIN_THREAD_ASYNC_EM_ASM\n");
|
||||
MAIN_THREAD_ASYNC_EM_ASM(out('Inside MAIN_THREAD_ASYNC_EM_ASM: ' + $0 + ' ' + $1), 42, 3.5);
|
||||
printf("After MAIN_THREAD_ASYNC_EM_ASM\n");
|
||||
}
|
Reference in New Issue
Block a user