view Resources/WebAssembly/ArithmeticTests/Run2.cpp @ 3852:ee0a1211419f

reverting default HttpThreadsCount to 50, as this slows performance of integration tests from 40s to 170s
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 20 Apr 2020 17:39:11 +0200
parents 04873915beaf
children
line wrap: on
line source

#include <iostream>
#include <emscripten/emscripten.h>

extern "C"
{
  void EMSCRIPTEN_KEEPALIVE Run2()
  {
    // This stuff is not properly discovered by DCMTK 3.6.2 configuration scripts
    std::cerr << std::endl << std::endl;
    std::cerr << "/**" << std::endl;
    std::cerr << "#define SIZEOF_CHAR " << sizeof(char) << std::endl;
    std::cerr << "#define SIZEOF_DOUBLE " << sizeof(double) << std::endl;    
    std::cerr << "#define SIZEOF_FLOAT " << sizeof(float) << std::endl;
    std::cerr << "#define SIZEOF_INT " << sizeof(int) << std::endl;
    std::cerr << "#define SIZEOF_LONG " << sizeof(long) << std::endl;
    std::cerr << "#define SIZEOF_SHORT " << sizeof(short) << std::endl;
    std::cerr << "#define SIZEOF_VOID_P " << sizeof(void*) << std::endl;
    std::cerr << "#define C_CHAR_UNSIGNED " << (!std::is_signed<char>()) << std::endl;
    std::cerr << "**/" << std::endl;
    std::cerr << std::endl << std::endl;
  }
}