Tigers-X / summarization-and-communications-demo

0 stars 0 forks source link

fifth issue #5

Closed GioChkhaidze closed 5 months ago

GioChkhaidze commented 5 months ago

TriagerX /interact -gemini How are you?

GioChkhaidze commented 5 months ago

TriagerX /summarize -chatgpt https://github.com/Tigers-X/summarization-and-communications-demo/issues/5

GioChkhaidze commented 5 months ago

TriagerX /summarize -chatgpt https://github.com/Tigers-X/summarization-and-communications-demo/issues/5

GioChkhaidze commented 5 months ago

TriagerX /summarize -chatgpt https://github.com/eclipse-openj9/openj9/issues/19629

github-actions[bot] commented 5 months ago
GioChkhaidze commented 5 months ago

TriagerX /summarize -gemini https://github.com/eclipse-openj9/openj9/issues/19629

github-actions[bot] commented 5 months ago

Error Summary:

Error: The current implementation of JITServer tests with TEST_FLAG=JITAAS results in a single JITServer instance running throughout the entire test suite. This creates incompatibility with the -X[no]compressedrefs JVM option, as the JITServer and client must agree on its usage. Tests with -Xnocompressedrefs end up bypassing the JITServer altogether.

Root Cause: The single JITServer instance persists across tests, and the -Xnocompressedrefs option is not dynamically adjusted for each test.

Affected Code:

Debugging and Resolution:

  1. Dynamic JITServer Creation: Modify the test setup to create a fresh JITServer instance for each individual test.
  2. Option Handling: Include a check for -Xnocompressedrefs (and other potentially incompatible options in the future) within the test setup. If present, start the JITServer with the same option.
  3. **