[ACT][PATCH] UBUNTU: SAUCE: Change stress-ng repo from cking to ubuntu
Po-Hsu Lin
po-hsu.lin at canonical.com
Tue Oct 12 08:02:02 UTC 2021
Use the stress-ng fork in git://kernel.ubuntu.com/ubuntu/stress-ng.git
to keep it up-to-date.
This repo will be synced regularly in the future with
https://github.com/ColinIanKing/stress-ng
Signed-off-by: Po-Hsu Lin <po-hsu.lin at canonical.com>
---
ubuntu_performance_latency/ubuntu_performance_latency.py | 2 +-
ubuntu_performance_power/ubuntu_performance_power.py | 2 +-
ubuntu_performance_stress_ng/ubuntu_performance_stress_ng.py | 2 +-
ubuntu_performance_thermal/ubuntu_performance_thermal.py | 2 +-
ubuntu_ramfs_stress/ubuntu_ramfs_stress.py | 2 +-
ubuntu_stress_btrfs/ubuntu_stress_btrfs.py | 2 +-
ubuntu_stress_btrfs_cmd/ubuntu_stress_btrfs_cmd.py | 2 +-
ubuntu_stress_smoke_test/ubuntu_stress_smoke_test.py | 2 +-
ubuntu_vfat_stress/ubuntu_vfat_stress.py | 2 +-
ubuntu_zfs_stress/ubuntu_zfs_stress.py | 2 +-
10 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/ubuntu_performance_latency/ubuntu_performance_latency.py b/ubuntu_performance_latency/ubuntu_performance_latency.py
index a780f033..94318993 100644
--- a/ubuntu_performance_latency/ubuntu_performance_latency.py
+++ b/ubuntu_performance_latency/ubuntu_performance_latency.py
@@ -110,7 +110,7 @@ class ubuntu_performance_latency(test.test):
self.job.require_gcc()
os.chdir(self.srcdir)
shutil.rmtree('stress-ng', ignore_errors=True)
- self.results = utils.system_output('git clone git://kernel.ubuntu.com/cking/stress-ng', retain_output=True)
+ self.results = utils.system_output('git clone git://kernel.ubuntu.com/ubuntu/stress-ng.git', retain_output=True)
os.chdir(os.path.join(self.srcdir, 'stress-ng'))
self.results = utils.system_output('git checkout -b V0.09.56 V0.09.56', retain_output=True)
self.results = utils.system_output('patch -p1 < %s/0001-Add-build-time-check-for-struct-sockaddr_un.patch' % self.bindir, retain_output=True)
diff --git a/ubuntu_performance_power/ubuntu_performance_power.py b/ubuntu_performance_power/ubuntu_performance_power.py
index cbc312e7..4194a8d9 100644
--- a/ubuntu_performance_power/ubuntu_performance_power.py
+++ b/ubuntu_performance_power/ubuntu_performance_power.py
@@ -97,7 +97,7 @@ class ubuntu_performance_power(test.test):
self.job.require_gcc()
os.chdir(self.srcdir)
shutil.rmtree('stress-ng', ignore_errors=True)
- self.results = utils.system_output('git clone git://kernel.ubuntu.com/cking/stress-ng', retain_output=True)
+ self.results = utils.system_output('git clone git://kernel.ubuntu.com/ubuntu/stress-ng.git', retain_output=True)
os.chdir(os.path.join(self.srcdir, 'stress-ng'))
self.results = utils.system_output('git checkout -b V0.09.56 V0.09.56', retain_output=True)
self.results = utils.system_output('make', retain_output=True)
diff --git a/ubuntu_performance_stress_ng/ubuntu_performance_stress_ng.py b/ubuntu_performance_stress_ng/ubuntu_performance_stress_ng.py
index 23f751f5..517d59d4 100644
--- a/ubuntu_performance_stress_ng/ubuntu_performance_stress_ng.py
+++ b/ubuntu_performance_stress_ng/ubuntu_performance_stress_ng.py
@@ -110,7 +110,7 @@ class ubuntu_performance_stress_ng(test.test):
self.job.require_gcc()
os.chdir(self.srcdir)
shutil.rmtree('stress-ng', ignore_errors=True)
- self.results = utils.system_output('git clone git://kernel.ubuntu.com/cking/stress-ng', retain_output=True)
+ self.results = utils.system_output('git clone git://kernel.ubuntu.com/ubuntu/stress-ng.git', retain_output=True)
os.chdir(os.path.join(self.srcdir, 'stress-ng'))
self.results = utils.system_output('git checkout -b V0.09.56 V0.09.56', retain_output=True)
self.results = utils.system_output('patch -p1 < %s/0001-Add-build-time-check-for-struct-sockaddr_un.patch' % self.bindir, retain_output=True)
diff --git a/ubuntu_performance_thermal/ubuntu_performance_thermal.py b/ubuntu_performance_thermal/ubuntu_performance_thermal.py
index 0c1ea601..70c83277 100644
--- a/ubuntu_performance_thermal/ubuntu_performance_thermal.py
+++ b/ubuntu_performance_thermal/ubuntu_performance_thermal.py
@@ -95,7 +95,7 @@ class ubuntu_performance_thermal(test.test):
self.job.require_gcc()
os.chdir(self.srcdir)
shutil.rmtree('stress-ng', ignore_errors=True)
- self.results = utils.system_output('git clone git://kernel.ubuntu.com/cking/stress-ng', retain_output=True)
+ self.results = utils.system_output('git clone git://kernel.ubuntu.com/ubuntu/stress-ng.git', retain_output=True)
os.chdir(os.path.join(self.srcdir, 'stress-ng'))
self.results = utils.system_output('git checkout -b V0.09.56 V0.09.56', retain_output=True)
self.results = utils.system_output('patch -p1 < %s/0001-Add-build-time-check-for-struct-sockaddr_un.patch' % self.bindir, retain_output=True)
diff --git a/ubuntu_ramfs_stress/ubuntu_ramfs_stress.py b/ubuntu_ramfs_stress/ubuntu_ramfs_stress.py
index 42361eb3..16f65632 100644
--- a/ubuntu_ramfs_stress/ubuntu_ramfs_stress.py
+++ b/ubuntu_ramfs_stress/ubuntu_ramfs_stress.py
@@ -48,7 +48,7 @@ class ubuntu_ramfs_stress(test.test):
utils.system('cp %s/ubuntu_ramfs_stress.sh %s' % (self.bindir, self.srcdir))
os.chdir(self.srcdir)
shutil.rmtree('stress-ng', ignore_errors=True)
- cmd = 'git clone --depth=1 git://kernel.ubuntu.com/cking/stress-ng 2>&1'
+ cmd = 'git clone --depth=1 git://kernel.ubuntu.com/ubuntu/stress-ng.git 2>&1'
self.results = utils.system_output(cmd, retain_output=True)
# Print test suite HEAD SHA1 commit id for future reference
diff --git a/ubuntu_stress_btrfs/ubuntu_stress_btrfs.py b/ubuntu_stress_btrfs/ubuntu_stress_btrfs.py
index c5bd8bdf..ab663ce8 100644
--- a/ubuntu_stress_btrfs/ubuntu_stress_btrfs.py
+++ b/ubuntu_stress_btrfs/ubuntu_stress_btrfs.py
@@ -47,7 +47,7 @@ class ubuntu_stress_btrfs(test.test):
utils.system('cp %s/ubuntu_stress_btrfs.sh %s' % (self.bindir, self.srcdir))
os.chdir(self.srcdir)
shutil.rmtree('stress-ng', ignore_errors=True)
- cmd = 'git clone --depth=1 git://kernel.ubuntu.com/cking/stress-ng 2>&1'
+ cmd = 'git clone --depth=1 git://kernel.ubuntu.com/ubuntu/stress-ng.git 2>&1'
self.results = utils.system_output(cmd, retain_output=True)
# Print test suite HEAD SHA1 commit id for future reference
diff --git a/ubuntu_stress_btrfs_cmd/ubuntu_stress_btrfs_cmd.py b/ubuntu_stress_btrfs_cmd/ubuntu_stress_btrfs_cmd.py
index 61eabb27..6fd4b7b9 100644
--- a/ubuntu_stress_btrfs_cmd/ubuntu_stress_btrfs_cmd.py
+++ b/ubuntu_stress_btrfs_cmd/ubuntu_stress_btrfs_cmd.py
@@ -48,7 +48,7 @@ class ubuntu_stress_btrfs_cmd(test.test):
utils.system('cp %s/ubuntu_stress_btrfs_cmd.sh %s' % (self.bindir, self.srcdir))
os.chdir(self.srcdir)
shutil.rmtree('stress-ng', ignore_errors=True)
- cmd = 'git clone --depth=1 git://kernel.ubuntu.com/cking/stress-ng 2>&1'
+ cmd = 'git clone --depth=1 git://kernel.ubuntu.com/ubuntu/stress-ng.git 2>&1'
self.results = utils.system_output(cmd, retain_output=True)
# Print test suite HEAD SHA1 commit id for future reference
diff --git a/ubuntu_stress_smoke_test/ubuntu_stress_smoke_test.py b/ubuntu_stress_smoke_test/ubuntu_stress_smoke_test.py
index a250b50a..24880587 100644
--- a/ubuntu_stress_smoke_test/ubuntu_stress_smoke_test.py
+++ b/ubuntu_stress_smoke_test/ubuntu_stress_smoke_test.py
@@ -51,7 +51,7 @@ class ubuntu_stress_smoke_test(test.test):
self.job.require_gcc()
os.chdir(self.srcdir)
shutil.rmtree('stress-ng', ignore_errors=True)
- cmd = 'git clone --depth=1 git://kernel.ubuntu.com/cking/stress-ng'
+ cmd = 'git clone --depth=1 git://kernel.ubuntu.com/ubuntu/stress-ng.git'
self.results = utils.system_output(cmd, retain_output=True)
# Print test suite HEAD SHA1 commit id for future reference
diff --git a/ubuntu_vfat_stress/ubuntu_vfat_stress.py b/ubuntu_vfat_stress/ubuntu_vfat_stress.py
index 2ee72505..b737bc1b 100644
--- a/ubuntu_vfat_stress/ubuntu_vfat_stress.py
+++ b/ubuntu_vfat_stress/ubuntu_vfat_stress.py
@@ -48,7 +48,7 @@ class ubuntu_vfat_stress(test.test):
utils.system('cp %s/ubuntu_vfat_stress.sh %s' % (self.bindir, self.srcdir))
os.chdir(self.srcdir)
shutil.rmtree('stress-ng', ignore_errors=True)
- cmd = 'git clone --depth=1 git://kernel.ubuntu.com/cking/stress-ng 2>&1'
+ cmd = 'git clone --depth=1 git://kernel.ubuntu.com/ubuntu/stress-ng.git 2>&1'
self.results = utils.system_output(cmd, retain_output=True)
# Print test suite HEAD SHA1 commit id for future reference
diff --git a/ubuntu_zfs_stress/ubuntu_zfs_stress.py b/ubuntu_zfs_stress/ubuntu_zfs_stress.py
index ceb81c04..dfaaa275 100644
--- a/ubuntu_zfs_stress/ubuntu_zfs_stress.py
+++ b/ubuntu_zfs_stress/ubuntu_zfs_stress.py
@@ -45,7 +45,7 @@ class ubuntu_zfs_stress(test.test):
utils.system('cp %s/ubuntu_zfs_stress.sh %s' % (self.bindir, self.srcdir))
os.chdir(self.srcdir)
shutil.rmtree('stress-ng', ignore_errors=True)
- cmd = 'git clone --depth=1 git://kernel.ubuntu.com/cking/stress-ng 2>&1'
+ cmd = 'git clone --depth=1 git://kernel.ubuntu.com/ubuntu/stress-ng.git 2>&1'
self.results = utils.system_output(cmd, retain_output=True)
# Print test suite HEAD SHA1 commit id for future reference
--
2.25.1
More information about the kernel-team
mailing list