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

Don't start a session when loading workspace and --nointeract is given #2840

Merged
merged 1 commit into from
Sep 20, 2018

Conversation

markuspf
Copy link
Member

Fixes #2832

Copy link
Member

@dimpase dimpase left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK, great, this fixes the issue #2832
and makes the corr. test in #2833 pass.

@codecov
Copy link

codecov bot commented Sep 19, 2018

Codecov Report

Merging #2840 into master will decrease coverage by <.01%.
The diff coverage is 100%.

@@            Coverage Diff             @@
##           master    #2840      +/-   ##
==========================================
- Coverage   76.05%   76.05%   -0.01%     
==========================================
  Files         480      480              
  Lines      241022   241116      +94     
==========================================
+ Hits       183310   183378      +68     
- Misses      57712    57738      +26
Impacted Files Coverage Δ
lib/session.g 58.49% <100%> (+1.62%) ⬆️
hpcgap/lib/hpc/stdtasks.g 63.42% <0%> (-0.77%) ⬇️
src/hpc/threadapi.c 43.55% <0%> (+0.1%) ⬆️
src/objset.c 84.71% <0%> (+0.22%) ⬆️
src/io.c 60.6% <0%> (+0.89%) ⬆️

Copy link
Member

@fingolfin fingolfin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That is clearly correct. Of course a test would be nice, but I guess we'll get one as a side effect of @dimpase's work?

@fingolfin fingolfin merged commit 721110f into gap-system:master Sep 20, 2018
@fingolfin fingolfin added the gapdays2018-fall Issues and PRs that arose at https://www.gapdays.de/gapdays2018-fall label Sep 20, 2018
@embray
Copy link
Contributor

embray commented Nov 14, 2018

Somehow this still appears to be broken, though I don't fully understand why. First off, --norepl / --nointeract are not parsed by the kernel in system.c during InitSystem. That shouldn't be a problem though since system.g installs the post-restore function that re-scans the command-line arguments, and includes handling for --nointeract and --norepl. That should be getting run before SESSION(), so we should have CommandLineOptions.norepl = true at this point. But somehow that appears to be failing...

I can reproduce this at the command line, not just with libgap. When I run gap -m 64m -E -T --nointeract -L <path-to-workspace> test.gap, where test.gap just contains Print(GAPInfo);, if I don't pass the -L option it works as expected. But if I do, it still drops into the interactive REPL. This, despite GAPInfo containing:

...
  CommandLineOptions := rec(
      A := false,
      B := "",
      D := false,
      E := false,
      K := "0",
      L := "<path-to-my-workspace>",
      M := false,
      N := false,
      O := false,
      R := false,
      T := true,
      a := "0",
      alwaystrace := false,
      b := false,
      cover := "",
      e := false,
      enableMemCheck := false,
      f := false,
      g := 0,
      h := false,
      l := [ "<path-to-gap-root>" ],
      m := "64m",
      memprof := "",
      n := false,
      nointeract := true,
      norepl := true,
      o := "2g",
      p := false,
      prof := "",
      q := false,
      quitonbreak := false,
      r := false,
      s := "4g",
      x := "",
      y := "",
      z := "20" ),
  CommandLineOptionsPrev := [ rec(
          A := false,
          B := "",
          D := false,
          E := false,
          K := "0",
          L := "",
          M := false,
          N := false,
          O := false,
          R := false,
          T := true,
          a := "0",
          alwaystrace := false,
          b := false,
          cover := "",
          e := false,
          enableMemCheck := false,
          f := false,
          g := 0,
          h := false,
          l := [ "<path-to-gap-root>" ],
          m := "64m",
          memprof := "",
          n := false,
          nointeract := true,
          norepl := true,
          o := "581m",
          p := false,
          prof := "",
          q := true,
          quitonbreak := false,
          r := false,
          s := "581m",
          x := "",
          y := "",
          z := "20" ) ],

  KernelInfo := rec(
      BUILD_DATETIME := "01-Nov-2018",
      BUILD_VERSION := "4.10.0",
      COMMAND_LINE := [ "/path/to/gap", "-l",
          "<path-to-gap-root>", "-m", "64m", "-E", "-T", "--nointeract", "-L",
          "<path-to-my-workspace>", "test.gap" ],
...

@embray
Copy link
Contributor

embray commented Nov 14, 2018

Scratch that--clearly my mistake. I'm running the GAP 4.10 release which does not have this fix. I assumed it did since this was merged > a month before the release came out.

@embray
Copy link
Contributor

embray commented Nov 14, 2018

Now my question would just be if there's some obvious way to work around this using the 4.10 release without having to patch the sources...

@olexandr-konovalov
Copy link
Member

@embray this went to master, while 4.10 release made from stable-4.10 branch. That branch was created off master more than a month ago. This is how GAP major releases are made.

@embray
Copy link
Contributor

embray commented Nov 23, 2018

I understand that, though I wonder why this wasn't backported to the 4.10-stable branch.

@ChrisJefferson
Copy link
Contributor

The boring answer is it wasn't fixing an (in our minds) serious issue, as this couldn't lead to incorrect reults and we tend to only merge minimum changes back to stable. Also, someone has to choose to mark the PR as to be merged back.

@embray
Copy link
Contributor

embray commented Nov 23, 2018

Sure, it happens. Should I open a new issue or PR to backport this fix?

@olexandr-konovalov
Copy link
Member

@embray no, I can cherry-pick it once we agree that it could be backported (it seems for me that it could)

@ChrisJefferson
Copy link
Contributor

If you label this as should be backported to 4.10, then it should happen at some point (someone usually makes a pass over the tag every so often (I've actually just done it for you)

@olexandr-konovalov olexandr-konovalov added backport-to-4.10-DONE release notes: to be added PRs introducing changes that should be (but have not yet been) mentioned in the release notes and removed backport-to-4.10 labels Nov 24, 2018
@olexandr-konovalov olexandr-konovalov added this to the GAP 4.10.1 milestone Nov 24, 2018
@embray
Copy link
Contributor

embray commented Nov 28, 2018

Thanks--I don't think I can apply labels.

@fingolfin
Copy link
Member

No worries, the labelling and backporting was already done, namely in 8cc677b

BTW @alex-konovalov I usually insert the SHA-1 of the backported commits into the PRs, that makes it much easier to double check that the backporting was really done. It would be great if you (and others doing backporting) could also do this (and yeah, we probably should "codify" this somewhere sigh)

@olexandr-konovalov olexandr-konovalov added release notes: added PRs introducing changes that have since been mentioned in the release notes and removed release notes: to be added PRs introducing changes that should be (but have not yet been) mentioned in the release notes labels Feb 23, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport-to-4.10-DONE gapdays2018-fall Issues and PRs that arose at https://www.gapdays.de/gapdays2018-fall release notes: added PRs introducing changes that have since been mentioned in the release notes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants