1
0
Fork 0

Adding upstream version 1.2.3.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-22 09:45:13 +02:00
parent 3a3aa427d7
commit e7ed09875d
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
58 changed files with 3068 additions and 0 deletions

22
selfupdate/e2e_test.go Normal file
View file

@ -0,0 +1,22 @@
package selfupdate
import (
"os"
"os/exec"
"testing"
)
func TestRunSelfUpdateExample(t *testing.T) {
if testing.Short() {
t.Skip("skipping test in short mode.")
}
t.Skip("TODO")
if err := exec.Command("go", "build", "../cmd/selfupdate-example").Run(); err != nil {
t.Fatal(err)
}
defer os.Remove("selfupdate-example")
// TODO
}