Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Evaluate tests for emscripten build #544

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

anutosh491
Copy link
Collaborator

@anutosh491 anutosh491 commented Apr 1, 2025

Description

I realized technically this should work. The only reason it might not is if we fail to fetch the -std=c++14 arg which we should !

Creating the interpreter correctly should fix that I suppose

TInterp_t CreateInterpreter(const std::vector<const char*>& Args /*={}*/,
const std::vector<const char*>& GpuArgs /*={}*/) {
std::string MainExecutableName =
sys::fs::getMainExecutable(nullptr, nullptr);
std::string ResourceDir = MakeResourcesPath();
std::vector<const char *> ClingArgv = {"-resource-dir", ResourceDir.c_str(),
"-std=c++14"};

Type of change

Please tick all options which are relevant.

  • Bug fix
  • New feature
  • Requires documentation updates

Testing

Please describe the test(s) that you added and ran to verify your changes.

Checklist

  • I have read the contribution guide recently

Copy link
Contributor

github-actions bot commented Apr 1, 2025

clang-tidy review says "All clean, LGTM! 👍"

Copy link

codecov bot commented Apr 1, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 75.94%. Comparing base (e1ace51) to head (0210023).

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##             main     #544   +/-   ##
=======================================
  Coverage   75.94%   75.94%           
=======================================
  Files           9        9           
  Lines        3646     3646           
=======================================
  Hits         2769     2769           
  Misses        877      877           
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Copy link
Contributor

github-actions bot commented Apr 1, 2025

clang-tidy review says "All clean, LGTM! 👍"

@anutosh491
Copy link
Collaborator Author

Strange, I won't expect the following to fail. Looks simple enough but it fails here

1: /home/runner/work/CppInterOp/CppInterOp/unittests/CppInterOp/InterpreterTest.cpp:80: Failure
1: Expected equality of these values:
1:   Cpp::Evaluate("int i = 11; ++i", &HadError)
1:     Which is: 2
1:   12
1: 
1: [  FAILED  ] InterpreterTest.Evaluate (262 ms)

Tried it locally too

image

Not sure why we get 2 in the first place !

Copy link
Contributor

github-actions bot commented Apr 1, 2025

clang-tidy review says "All clean, LGTM! 👍"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant