File: Skip-version-tests.patch

package info (click to toggle)
arduino-cli 1.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 65,096 kB
  • sloc: cpp: 6,520; sh: 196; python: 30; makefile: 28
file content (23 lines) | stat: -rw-r--r-- 684 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From: Nicolas Peugnet <nicolas@club1.fr>
Date: Tue, 23 Dec 2025 23:54:17 +0100
Subject: Skip version tests

They require to run the tests with specific ldflags, and are not
that important.
---
 internal/version/version_test.go | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/internal/version/version_test.go b/internal/version/version_test.go
index 72d49f0..6ec576a 100644
--- a/internal/version/version_test.go
+++ b/internal/version/version_test.go
@@ -13,6 +13,8 @@
 // Arduino software without disclosing the source code of your own applications.
 // To purchase a commercial license, send an email to license@arduino.cc.
 
+//go:build ignore
+
 package version
 
 import (