1. 24 Dec, 2020 13 commits
  2. 23 Dec, 2020 14 commits
  3. 22 Dec, 2020 3 commits
  4. 21 Dec, 2020 2 commits
  5. 18 Dec, 2020 5 commits
  6. 17 Dec, 2020 3 commits
    • Kirill Smelkov's avatar
      X go/neo: Fix benchmarkGetObject · 114b7fd6
      Kirill Smelkov authored
      - without registering M to tracer it was failing as
      
        BenchmarkGetObjectNetPipe
            neo_test.go:491: main: expect: *neo.eventMStartReady:
                want: &{m true}
                have: &{ true}
                diff:  {
                - Where: "m",
                + Where: "",
                  Ready: true,
                 }
      
      - Client is now required to be explicitly Run, but I forgot to update
        thi function in eae3b427.
      114b7fd6
    • Kirill Smelkov's avatar
      Merge branch 'master' into t · 01ebcbe7
      Kirill Smelkov authored
      * master:
        go/*: Adapt to xnet.Networker changes wrt Listen and cancellation
        go/internal/xtesting: DrvTestWatch: Verify that watching works with empty transactions
        go/zeo: tests: Terminate spawned processses with SIGTERM instead of SIGKILL
        go/zodb/zeo: Factor-out verifying empty database into xtesting.DrvTestEmptyDB
        go/neo/t: .nxdtest: nxdtest changes summaryf signature to include stderr
      01ebcbe7
    • Kirill Smelkov's avatar
      go/*: Adapt to xnet.Networker changes wrt Listen and cancellation · e5729209
      Kirill Smelkov authored
      See
      
      	kirr/go123@3354b401
      and
      
      	kirr/go123@b03d65ff
      
      The wrapping logic in LinkListener goes away because Accept from xnet
      now supports cancellation.
      e5729209